このクォータニオンがクォータニオン q と完全に等しいかテストします。
Int32 SIQuaternion.Equals( SIQuaternion in_pQuat ); |
oBoolean = SIQuaternion.Equals( q ); |
Boolean このクォータニオンがクォータニオン q と等しい場合は True、等しくない場合は false。
パラメータ | タイプ | 説明 |
---|---|---|
q | SIQuaternion | クォータニオンオペランド |
dim q1, q2 ' Create Quaternions. set q1 = XSIMath.CreateQuaternion(1.0, 1.0, 2.0, 3.0) set q2 = XSIMath.CreateQuaternion(1.0, 1.0, 2.0, 3.0) if q1.Equals( q2 ) then 'do something end if |