SIVector3.MaxComponent

説明

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

スクリプト 構文

oFloat = SIVector3.MaxComponent();

戻り値

Float ポイント値(このベクトルの最大コンポーネントの値)

Python の例

# Create 3D vectors.
v1 = XSIMath.CreateVector3( -10.0, 5.0, 1.0 )
max = v1.MaxComponent()
Application.LogMessage( max )
# Expected result
#INFO : 5.0

関連項目

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