SIMatrix4.Transpose

説明

行列 m を転置し、結果をこの行列に格納します(this = Transpose(m))。

C#構文

SIMatrix4.Transpose( SIMatrix4 in_pMatrix );

スクリプト構文

SIMatrix4.Transpose( m );

パラメータ

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

VBScript の例

dim m1, m2

' Create 4x4 matrices.

set m1 = XSIMath.CreateMatrix4

set m2 = XSIMath.CreateMatrix4

m1.Set 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0

m2.Transpose m1

関連項目

SIMatrix4.TransposeInPlace SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion