Table of Contents

Method Deconstruct

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

Deconstruct(out double, out double, out double, out double)

Deconstructs the rectangle into its edge coordinates. Enables tuple-style deconstruction: var (l, t, r, b) = rect;

public void Deconstruct(out double left, out double top, out double right, out double bottom)

Parameters

left double

The left edge.

top double

The top edge.

right double

The right edge.

bottom double

The bottom edge.