Tests the strict equality of this vector with the vector v.
oBoolean = SIVector3.Equals( v ); |
Boolean. True if this vector equals the vector v; otherwise False.
Parameter | Type | Description |
---|---|---|
v | SIVector3 | Operand vector |
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 |