SIVector3.MulByMatrix3InPlace

説明

このベクトルに行列 m を右から掛け、置き換えます(this = this . m)

スクリプト 構文

SIVector3.MulByMatrix3InPlace( m );

パラメータ

パラメータ タイプ 詳細
m SIMatrix3 オペランド行列

VBScript の例

dim v1, m1
' Create 3D vector.
set v1 = XSIMath.CreateVector3
' Create 3x3 matrix.
set m1 = XSIMath.CreateMatrix3
v1.Set 1.0, 2.0, 3.0
m1.SetIdentity
v1.MulByMatrix3InPlace m1

関連項目

SIVector3.MulByMatrix3 SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion