Returns the index of the minimum (signed) component of this vector. Note that this is not the absolute minimum, but the signed minimum, so that a vector of x=10.0, y=-5.0, z=1.0 will return 1, not 2.
oInteger = SIVector3.MinComponentIndex(); |
Integer (index of the minimum signed component of this vector).
' Create 3D vectors. set v1 = XSIMath.CreateVector3( 10.0, -5.0, 1.0 ) minIdx = v1.MinComponentIndex Application.LogMessage minIdx ' Expected result 'INFO : 1 |