Sets the W, X, Y and Z values of this quaternion.
SIQuaternion.Set( Double in_dW, Double in_dX, Double in_dY, Double in_dZ ); |
SIQuaternion.Set( W, X, Y, Z ); |
Parameter | Type | Description |
---|---|---|
W | Floating Point value | W value to set in this quaternion |
X | Floating Point value | X value to set in this quaternion |
Y | Floating Point value | Y value to set in this quaternion |
Z | Floating Point value | Z value to set in this quaternion |
dim q1 ' Create Quaternion. set q1 = XSIMath.CreateQuaternion (1.0, 0.0, 0.0, 0.0) |