Point.Point

Point()

の新しいインスタンスを初期化しますPointclass.

public Point()

関連項目


Point(double, double)

の新しいインスタンスを初期化しますPointclass.

public Point(double x, double y)
パラメータタイプ説明
xDoubleX 座標の値。
yDoubleY 座標の値。

関連項目


Point(double, double, double)

の新しいインスタンスを初期化しますPointclass.

public Point(double x, double y, double z)
パラメータタイプ説明
xDoubleX 座標の値。
yDoubleY 座標の値。
zDoubleZ 座標の値。

関連項目


Point(double, double, double, double)

の新しいインスタンスを初期化しますPointclass.

public Point(double x, double y, double z, double m)
パラメータタイプ説明
xDoubleX 座標の値。
yDoubleY 座標の値。
zDoubleZ 座標の値。
mDoubleM 座標の値。

関連項目


Point(IPoint)

の新しいインスタンスを初期化しますPointclass.

public Point(IPoint other)
パラメータタイプ説明
otherIPointもう一方IPointからデータをコピーします。

例外

例外調子
ArgumentNullException引数はnull.

関連項目