SIVector3.Equals

説明

このベクトルがベクトル vと完全に等しいかテストします。

スクリプト 構文

oBoolean = SIVector3.Equals( v );

戻り値

Boolean. このベクトルがベクトル vと等しい場合は True、等しくない場合は False。

パラメータ

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

VBScript の例

dim v1, v2
' Create 3D vectors.
set v1 = XSIMath.CreateVector3(1.0, 2.0, 3.0)
set v2 = XSIMath.CreateVector3(1.0, 2.0, 3.0)
if v1.Equals(v2) then
Application.LogMessage "v1 equals v2"
end if

関連項目

SIVector3.EpsilonEquals SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion