SIVector3.Normalize

説明

このベクトルの値を、ベクトル v の正規化値に設定します。

C#構文

Int32 SIVector3.Normalize( SIVector3 in_pVector );

スクリプト構文

oBoolean = SIVector3.Normalize( v );

戻り値

Boolean。正規化計算が行われた場合は True、行われなかった場合は false を戻します。

パラメータ

パラメータ タイプ 説明
v SIVector3 オペランドベクトル

VBScript の例

dim v1, v2

' Create 3D vectors.

set v1 = XSIMath.CreateVector3

set v2 = XSIMath.CreateVector3

v1.Set 12.0, 34.0, 43.0

if v2.Normalize( v1 ) then

computation = TRUE

else

computation = FALSE

end if

関連項目

SIVector3.NormalizeInPlace SIVector3.Length SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion