Table of Contents

Method Deconstruct

Namespace
LMKit.Graphics.Geometry
Assembly
LM-Kit.NET.dll

Deconstruct(out Point, out Point, out Point, out Point)

Deconstructs the quadrilateral into corner points (TopLeft, TopRight, BottomRight, BottomLeft). Enables tuple-style deconstruction: var (tl, tr, br, bl) = quad;

public void Deconstruct(out Point topLeft, out Point topRight, out Point bottomRight, out Point bottomLeft)

Parameters

topLeft Point

Outputs the top-left corner.

topRight Point

Outputs the top-right corner.

bottomRight Point

Outputs the bottom-right corner.

bottomLeft Point

Outputs the bottom-left corner.