[]
Represents an ordered pair of x- and y-coordinates that defines a point in a two-dimensional plane.
public struct Point : IEquatable<Point>
Public Structure Point
Implements IEquatable(Of Point)
Name | Description |
---|---|
Point(double, double) | Initializes a new instance of the Point struct with the specified coordinates. |
Name | Description |
---|---|
X | Gets or sets the x-coordinate of this Point. |
Y | Gets or sets the y-coordinate of this Point. |
Name | Description |
---|---|
Equals(Point) | Indicates whether the current value is equal to another value of the same type. |
Offset(Point) | Translates this Point by the specified amount. |
Offset(double, double) | Translates this Point by the specified amount. |