Table of Contents

Method Deconstruct

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

Deconstruct(out double, out double)

Deconstructs the point into its X and Y coordinates. Enables tuple-style deconstruction: var (x, y) = point;

public void Deconstruct(out double x, out double y)

Parameters

x double

The X-coordinate of the point.

y double

The Y-coordinate of the point.