SIVector3.Add

説明

両方の入力ベクトルを追加し、結果をこのメソッドに保存します(this = v1 + v2)。

スクリプト 構文

SIVector3.Add( v1, v2 );

パラメータ

パラメータ タイプ 詳細
v1 SIVector3 オペランドベクトル
v2 SIVector3 オペランドベクトル

VBScript の例

dim v1, v2, v3
' Create 3D vectors.
set v1 = XSIMath.CreateVector3(1.0, 2.0, 3.0)
set v2 = XSIMath.CreateVector3(4.0, 5.0, 6.0)
set v3 = XSIMath.CreateVector3
'v3 = v1 + v2
v3.Add v1, v2

関連項目

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