SIMatrix4.InvertInPlace

説明

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

スクリプト 構文

oBoolean = SIMatrix4.InvertInPlace();

戻り値

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

JScript の例

/*
        This example demonstrates how to set up a 4x4 matrix, 
        invert it and then trap whether the inversion was
        successful
*/
// Create 4x4 matrices
var aValues = new Array(
        2.0, 3.0, 0.0, 0.0, 
        1.0, 4.0, 0.0, 0.0,
        0.0, 0.0, 1.0, 0.0,
        0.0, 0.0, 0.0, 1.0
);
var m1 = XSIMath.CreateMatrix4(aValues);
var m2 = XSIMath.CreateMatrix4();
// Make the second matrix the inversion of the first
if ( m2.InvertInPlace() ) {
        Application.LogMessage( "Success :-D" );
} else {
        Application.LogMessage( "Failure :-(" );
}
// Expected result:
// INFO : Success :-D

関連項目

SIMatrix4.Invert SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion