SIMatrix3.Transpose

Description

Transposes the matrix m and stores the result in this matrix: this = Transpose(m)

C# Syntax

SIMatrix3.Transpose( SIMatrix3 in_pMatrix );

Scripting Syntax

SIMatrix3.Transpose( m );

Parameters

Parameter Type Description
m SIMatrix3 Matrix operand

Examples

VBScript Example

dim m1, m2
' Create 3x3 matrices.
set m1 = XSIMath.CreateMatrix3(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
set m2 = XSIMath.CreateMatrix3
m2.Transpose m1

See Also

SIMatrix3.TransposeInPlace SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion