Struct Point
A Point is composed of the (x,y) coordinates of an object.
public readonly record struct Point : IEquatable<Point>
- Implements
- Inherited Members
Constructors
Point(double, double)
A Point is composed of the (x,y) coordinates of an object.
public Point(double X, double Y)
Parameters
Properties
X
The abscissa of the point.
public double X { get; init; }
Property Value
Y
The ordinate of the point.
public double Y { get; init; }