SIVector3.Cross

SIVector3.Cross

説明

このベクトルを、ベクトル v1 と v2 の外積に設定します。

C#構文

SIVector3.Cross( SIVector3 in_pVector1, SIVector3 in_pVector2 );

スクリプト構文

SIVector3.Cross( v1, v2 );

パラメータ

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

VBScript の例

dim v1, v2, v3

' Create 3D vectors.

set v1 = XSIMath.CreateVector3

set v2 = XSIMath.CreateVector3

set v3 = XSIMath.CreateVector3

v1.Set 1.0, 0.0, 0.0

v2.Set 0.0, 1.0, 0.0

v3.Cross v1, v2

関連項目

SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion