Class that represents a point (with x and y coordinates).
constructor(x?: number, y?: number): Point
Initializes a new instance of the Point class.
X coordinate of the new Point.
Y coordinate of the new Point.
Gets or sets the x coordinate of this Point.
Gets or sets the y coordinate of this Point.
clone(): Point
Creates a copy of this Point.
equals(pt: Point): boolean
Returns true if a Point has the same coordinates as this Point.
Point to compare to this Point.
Copyright © GrapeCity, inc. All rights reserved.
Class that represents a point (with x and y coordinates).