SIMatrix3.InvertInPlace

説明

この行列の逆行列(特異でない場合)を求めます(this = this^-1)。

C#構文

Int32 SIMatrix3.InvertInPlace();

スクリプト構文

oBoolean = SIMatrix3.InvertInPlace( m );

戻り値

Boolean。この行列が逆行列を持つ(特異でない)場合は True、逆行列を持たない場合は false。

パラメータ

パラメータ タイプ 説明
m SIMatrix3 行列オペランド

VBScript の例

dim m1

' Create 3x3 matrix.

set m1 = XSIMath.CreateMatrix3(2.0, 3.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0)

if m1.InvertInPlace then

'do something

else

'do another thing

end if

関連項目

SIMatrix3.Invert SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion