Version: 2020.1
言語: 日本語
public Plane (Vector3 inNormal, Vector3 inPoint);

説明

平面を作成します

inPoint の位置を通り、inNormal を法線とする平面を作成します。

法線は 正規化されたベクトル である必要があることに注意してください。


public Plane (Vector3 inNormal, float d);

説明

平面を作成します

d を距離として、inNormal を法線とする平面を作成します。

The distance is measured from the Plane to the origin, along the Plane's normal.

Note, this means a positive value for distance results in the Plane facing towards the origin. A negative distance value results in the Plane facing away from the origin.

法線は 正規化されたベクトル である必要があることに注意してください。


public Plane (Vector3 a, Vector3 b, Vector3 c);

説明

平面を作成します

指定した 3点 の位置を通る平面を作成します。平面を作成するとき、この 3点 の位置は、正面から見て時計回りで設定されます。