SIVector3.ScaleAddInPlace

説明

このベクトルの値を、このベクトル自身に s をスカラ乗算した後、ベクトル v を加えた値に設定します(this = s*this + v)。

C#構文

SIVector3.ScaleAddInPlace( Double in_dScalar, SIVector3 in_pVector );

スクリプト構文

SIVector3.ScaleAddInPlace( s, v1, v2 );

パラメータ

パラメータ タイプ 説明
s Float ポイント値 ベクトル v1 のスカラ乗算子
v1 SIVector3 オペランドベクトル
v2 SIVector3 オペランドベクトル

VBScript の例

dim v1, v2

' Create 3D vectors.

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

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

'v1 = 2.5 * v1 + v2

v1.ScaleAddInPlace 2.5, v2

関連項目

SIVector3.ScaleAdd SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion