SIVector3.MulByTransformationInPlace

説明

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

C#構文

SIVector3.MulByTransformationInPlace( SITransformation in_pTransformation );

スクリプト構文

SIVector3.MulByTransformationInPlace( t );

パラメータ

パラメータ タイプ 説明
t SITransformation オペランド変換

VBScript の例

dim v1, rotAngles, t1

' Create 3D vectors.

set v1 = XSIMath.CreateVector3

set rotAngles = XSIMath.CreateVector3

' Create Transformation.

set t1 = XSIMath.CreateTransform

v1.Set 1.0, 0.0, 0.0

rotAngles.Set 0.0, 0.0, 0.7853981633974483

t1.SetRotationFromXYZAngles rotAngles

v1.MulByTransformationInPlace t1

関連項目

SIVector3.MulByTransformation SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion