SIVector3.MinComponentIndex

説明

このベクトルの最小(符号付き)コンポーネントのインデックスを戻します。これが絶対最小数ではなく、符号付き最小数の場合、x=10.0、y=-5.0、z=1.0 のベクトルは 2 ではなく 1 を戻します。

C#構文

Int16 SIVector3.MinComponentIndex();

スクリプト構文

oInteger = SIVector3.MinComponentIndex();

戻り値

Integer(このベクトルの最小符号付きコンポーネントのインデックス)

VBScript の例

' Create 3D vectors.

set v1 = XSIMath.CreateVector3( 10.0, -5.0, 1.0 )

minIdx = v1.MinComponentIndex

Application.LogMessage minIdx 

' Expected result

'INFO : 1

関連項目

SIVector3.MinComponent SIVector3.MaxComponent SIVector3.MaxComponentIndex SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion