x座標とy座標を持つ点を表すクラス。
constructor(x?: number, y?: number): Point
Pointクラスの新しいインスタンスを初期化します。
X coordinate of the new Point.
Y coordinate of the new Point.
このPoint のx座標を取得または設定します。
このPoint のy座標を取得または設定します。
clone(): Point
このPoint のコピーを作成します。
equals(pt: Point): boolean
Point がこのPointと同じ座標を持つ場合、trueを返します。
Point to compare to this Point.
x座標とy座標を持つ点を表すクラス。