このベクトルの値を、ベクトル v の正規化値に設定します。
Int32 SIVector3.Normalize( SIVector3 in_pVector ); |
oBoolean = SIVector3.Normalize( v ); |
Boolean。正規化計算が行われた場合は True、行われなかった場合は false を戻します。
パラメータ | タイプ | 説明 |
---|---|---|
v | SIVector3 | オペランドベクトル |
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 |