SIVector3.AddInPlace

説明

入力ベクトルをこのベクトルに追加します(this = this + v)。

C#構文

SIVector3.AddInPlace( SIVector3 in_pVector );

スクリプト構文

SIVector3.AddInPlace( v );

パラメータ

パラメータ タイプ 説明
v SIVector3 オペランドベクトル

VBScript の例

dim v1, v2

' Create 3D vectors.

set v1 = XSIMath.CreateVector3(1.0, 2.0, 3.0)

set v2 = XSIMath.CreateVector3(4.0, 5.0, 6.0)

'v1 = v1 + v2

v1.AddInPlace v2

関連項目

SIVector3.Add SIVector3.Sub SIVector3.SubInPlace SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion