このベクトルの最小(符号付き)コンポーネントのインデックスを戻します。これが絶対最小数ではなく、符号付き最小数の場合、x=10.0、y=-5.0、z=1.0 のベクトルは 2 ではなく 1 を戻します。
Int16 SIVector3.MinComponentIndex(); |
oInteger = SIVector3.MinComponentIndex(); |
Integer(このベクトルの最小符号付きコンポーネントのインデックス)
' Create 3D vectors. set v1 = XSIMath.CreateVector3( 10.0, -5.0, 1.0 ) minIdx = v1.MinComponentIndex Application.LogMessage minIdx ' Expected result 'INFO : 1 |