Equals (SIVector3)
Description
Tests the strict equality of this vector with the vector v.
Scripting Syntax
SIVector3.Equals( v )
C# Syntax
Int32 SIVector3.Equals( SIVector3 in_pVector );Parameters
|
Parameter |
Type |
Description |
|
v |
Operand vector |
Return Value
Boolean. True if this vector equals the vector v; otherwise False.
Examples
VBScript Example
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
See Also
|
|
Autodesk Softimage v7.5