ベクトル v1 と v2 の間でリニア補間を行い、結果をこのベクトルに格納します(this = (1-alpha)*v1 + alpha*v2)。
SIVector3.LinearlyInterpolate( SIVector3 in_pVector1, SIVector3 in_pVector2, Double in_dAlpha ); |
SIVector3.LinearlyInterpolate( v1, v2, alpha ); |
パラメータ | タイプ | 説明 | ||||
---|---|---|---|---|---|---|
v1 | SIVector3 | オペランドベクトル | ||||
v2 | SIVector3 | オペランドベクトル | ||||
alpha | Float ポイント値 |
スカラ補間子
|
dim v1, v2, v3 ' Create 3D vectors. set v1 = XSIMath.CreateVector3 set v2 = XSIMath.CreateVector3 set v3 = XSIMath.CreateVector3 v1.Set 1.0, 2.0, 3.0 v2.Set 3.0, 5.0, 6.0 alpha = .7 'v3 = (1 - alpha) * v1 + alpha * v2 v3.LinearlyInterpolate v1, v2, alpha |