このベクトルの値を、ベクトル v1に s をスカラ乗算した後、ベクトル v2を加えた値に設定します(this = s*v1 + v2)。
SIVector3.ScaleAdd( s, v1, v2 ); |
dim v1, v2, v3 ' Create 3D vectors. set v1 = XSIMath.CreateVector3(1.0, 2.0, 3.0) set v2 = XSIMath.CreateVector3(3.0, 4.0, 5.0) set v3 = XSIMath.CreateVector3 'v3 = 2.5 * v1 + v2 v2.ScaleAdd 2.5, v1, v2 |