Class Point
A 2D point.
public class Point
- Inheritance
-
Point
- Inherited Members
Constructors
Point()
Initializes a new instance of the Point class.
public Point()
Point(double, double)
Initializes a new instance of the Point class.
public Point(double x, double y)
Parameters
Properties
X
Gets or sets the X coordinate.
public double X { get; set; }
Property Value
Y
Gets or sets the Y coordinate.
public double Y { get; set; }
Property Value
Methods
ToString()
Converts to string.
public override string ToString()