[]
Defines a class the represents the coordinate concept in mathematics.
public sealed class Coordinate : Vector<float>, ICloneable
Name | Description |
---|---|
Coordinate(float, float) | Indicates a new instance of the Coordinate class. |
Name | Description |
---|---|
X | Gets or sets the value of x-coordinate. |
Y | Gets or sets the value of y-coordinate. |
Name | Description |
---|---|
implicit operator Point(Coordinate) | Implicit convert a Coordinate value to a Point object. |
implicit operator Coordinate(Point) | Implicit convert a Point value to a Coordinate object. |