Assembly: VRage.Math.dll

public struct Point: IEquatable<Point>

Defines a point in 2D space.

Fields

Member Description
X Specifies the x-coordinate of the Point.
Y Specifies the y-coordinate of the Point.

Properties

Member Description
static Zero Returns the point (0,0).

Constructors

Member Description
Point(int, int)

Methods

Member Description
Equals(Point) Determines whether two Point instances are equal.
Equals(object) Determines whether two Point instances are equal.
GetHashCode() Gets the hash code for this object.
ToString() Returns a String that represents the current Point.

Implements: