InvertInPlace (SIMatrix3)

Description

Inverts this matrix (if not singular): this = this^-1

Scripting Syntax

SIMatrix3.InvertInPlace( m )

C# Syntax

Int32 SIMatrix3.InvertInPlace();

Parameters

Parameter

Type

Description

m

SIMatrix3

Matrix operand

Return Value

Boolean True if this matrix has been inverted (not singular); otherwise False.

Examples

VBScript Example

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

See Also

SIMatrix3.Invert

SIVector3

SIMatrix3

SIMatrix4

SIRotation

SITransformation

SIQuaternion

 



Autodesk Softimage v7.5