Difference between revisions of "Quaternion"

From Elite Wiki
m (Oolite Specifics)
(link to Quaternion calculator)
(One intermediate revision by one other user not shown)
Line 142: Line 142:
 
=== Oolite Specifics ===
 
=== Oolite Specifics ===
  
Although Quaternions are coordinate system indifferent, Oolite, because it makes use of OpenGL, uses a [http://en.wikipedia.org/wiki/Left-handed_coordinate_system#Orientation_and_handedness left-handed coordinate system]. This means that all positive quaternion rotations about an axis, as discussed in the [[#Overview|Overview]] section above, are clockwise when the axis of rotation is pointing towards you (anti-clockwise if pointing away from you).
+
Although Quaternions are coordinate system indifferent, Oolite, because it makes use of OpenGL, uses a [http://en.wikipedia.org/wiki/Left-handed_coordinate_system#Orientation_and_handedness left-handed coordinate system]. This means that all positive quaternion rotations about an axis, as discussed in the [[#Overview|Overview]] section above, are anti-clockwise (counter-clockwise) when the axis of rotation is pointing towards you (clockwise if pointing away from you).
  
 
Also all Oolite ships and other entities have to be designed with forwards pointing along the z-axis, up along the y-axis and right along the x-axis. These entities have an orientation in space is given by a quaternion (the [[Oolite_JavaScript_Reference:_Entity#orientation|.orientation]] JavaScript property) that describes the transformation from this initial design orientation to the required final orientation.
 
Also all Oolite ships and other entities have to be designed with forwards pointing along the z-axis, up along the y-axis and right along the x-axis. These entities have an orientation in space is given by a quaternion (the [[Oolite_JavaScript_Reference:_Entity#orientation|.orientation]] JavaScript property) that describes the transformation from this initial design orientation to the required final orientation.
Line 149: Line 149:
  
 
* [[Oolite JavaScript Reference: Quaternion]]
 
* [[Oolite JavaScript Reference: Quaternion]]
 +
* [https://app.box.com/s/6usw7ozbvobze3hkouzc Quaternion calculator] - a very useful spreadsheet
 
* [http://en.wikipedia.org/wiki/Quaternion Wikipedia page on quaternions]
 
* [http://en.wikipedia.org/wiki/Quaternion Wikipedia page on quaternions]
 
* [http://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation Wikipedia page on quaternions and spatial rotation]
 
* [http://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation Wikipedia page on quaternions and spatial rotation]

Revision as of 10:00, 20 June 2014

Overview

A quaternion is a set of four values (W X Y Z) that are used in Oolite to specify a rotation in 3D space. To specify a particular rotation you need to think about the axis about which the rotation is made and the angle or amount by which the model is to be rotated.

For a given axis (x y z) and angle (α), the quaternion representing a rotation of a degrees around the axis from the origin (0,0,0) to (x,y,z) is:


W = cos (0.5 × α)

X = x × sin (0.5 × α)

Y = y × sin (0.5 × α)

Z = z × sin (0.5 × α)


So a rotation of 90 degrees about the z axis (0 0 1) would be:


W = cos 45 ° = 0.707…

X = 0 × sin 45 ° = 0

Y = 0 × sin 45 ° = 0

Z = 1 × sin 45 ° = 0.707…


Now because quaternions are normalised (adjusted so that W × W + X × X + Y × Y + Z × Z = 1) when Oolite reads them in, you can multiply each part of a quaternion by the same value and still have it represent the same angle. So this rotation can also be represented as W = 1, X = 0, Y = 0, Z = 1 (let's use [1 0 0 1] as shorthand).


Examples

90 ° turns about the z-axis

Oolite uses quaternions to specify rotations in some parts of shipdata.plist, most notably in the subentities part of an entry, like here in the relevant sub-entity entry for the Coriolis station:


Code: subentities =

( 
   "arc-detail 0 0 0 1 0 0 0", 
   "arc-detail 0 0 0 1 0 0 1", 
   "arc-detail 0 0 0 0 0 0 1" 
   "arc-detail 0 0 0 1 0 0 -1" 
)


The last four numbers after the four 'arc-detail' lines are the W X Y and Z of quaternions representing rotations about the z-axis of 0 degrees, 90 degrees, 180 degrees, and 270 degrees (the first three numbers are the subentity's position relative to the station, in this case all are at the same place at the station's origin).

120 ° turns about the z-axis

Similarly, the shipdata of the Weeviloid 2 illustrates how to place sub-entities at 3 equilateral points:


Code:

subentities =
(
   "weeviloid2-spine	0 0 0 1 0 0 0",
   "weeviloid2-spine	0 0 0 0.5 0 0 0.8660254",
   "weeviloid2-spine	0 0 0 0.5 0 0 -0.8660254"
)


Given that the first entry (0 0 0 1 0 0 0) will place the sub-entity at the exact place that the model is situated (0 degrees), the next two lines reproduce it at 120 degrees and 240 degrees.

22.5 ° turns about the z-axis

To display 16 sub-entities that join to make a ring, as done in the Ringpod and Torus shipdata, these are the relevant lines:


Code:

subentities =
(
   "torus_pod  0 0 0 1 0 0 0",                 // 0 degree
   "torus_pod  0 0 0 0.9808 0.0 0.0 0.1951", // 22.5 degrees
   "torus_pod  0 0 0 0.9239 0.0 0.0 0.3827", // 45 degrees 
   "torus_pod  0 0 0 0.8315 0.0 0.0 0.5556", / /67.5 degrees
   "torus_pod  0 0 0 0.7071 0.0 0.0 0.7071", // 90 degrees
   "torus_pod  0 0 0 0.5556 0.0 0.0 0.83110", //112.5 degrees
   "torus_pod  0 0 0 0.3827 0.0 0.0 0.9239", // 135 degrees
   "torus_pod  0 0 0 0.1951 0.0 0.0 0.9808", // 157.5 degrees
   "torus_pod  0 0 0 0 0 0 1",                 // 180 degrees
   "torus_pod  0 0 0 -0.1951 0.0 0.0 0.9808", // 202.5 degrees
   "torus_pod  0 0 0 -0.3827 0.0 0.0 0.9239", // 225 degrees
   "torus_pod  0 0 0 -0.5556 0.0 0.0 0.83110", // 247.5 degrees
   "torus_pod  0 0 0 -0.7071 0.0 0.0 0.7071", // 270 degrees
   "torus_pod  0 0 0 -0.8315 0.0 0.0 0.5556", // 292.5 degrees
   "torus_pod  0 0 0 -0.9239 0.0 0.0 0.3827", // 315 degrees
   "torus_pod  0 0 0 -0.9808 0.0 0.0 0.1951" // 337.5 degrees
)


Again the 0 ° sub-entity will appear with the 0 0 0 1 0 0 0, and the next 15 lines place it at 22.5 °, 45 °, 67.5 °, 90 °, 112.5 °, 135 °, 157.5 °, 180 ° (with 0 0 0 0 0 0 1), 202.5 °, 225 °, 247.5 °, 270 °, 292.5 °, 315 ° and 337.5 °.

using Java Script to calculate quaternions

Oolite contains a whole set of vector and quaternion methods than can be used for easy manipulating quaternions. To generate a quaternion for a certain rotation around the z-axis we can rotate the identity quaternion around the z-axis with the command:

new Quaternion(1,0,0,0).rotate(new Vector3D(0,0,1), angle)

With this command we can calculate our own quaternion for any rotation around the z-axis, or any other axis when desired. Angle is not in degree but in Math.PI

Quaternion calculus

To perform one rotation, and then another, one needs to multiply two quaternions together.

Multiplying quaternions isn't commutative: Qa × Qb does not equal Qb × Qa

To multiply Q₁ (w₁ , x₁ , y₁ , z₁ ) by Q₂ (w₂, x₂, y₂, z₂):

W = w₁ × w₂ - x₁ × x₂ - y₁ × y₂ - z₁ × z₂

X = w₁ × x₂ + x₁ × w₂ + y₁ × z₂ - z₁ × y₂

Y = w₁ × y₂ + y₁ × w₂ + z₁ × x₂ - x₁ × z₂

Z = w₁ × z₂ + z₁ × w₂ + x₁ × y₂ - y₁ × x₂


To determine the quaternion for a rotation of α degrees/radians around an axis defined by a vector (x, y, z):

W = cos (0.5 × α)

X = x × sin (0.5 × α)

Y = y × sin (0.5 × α)

Z = z × sin (0.5 × α)

or:

W = 1 / tan (0.5 × α)

X = x

Y = y

Z = z

These are equivalent because of the trigonometric identity sin x/cos x = tan x, and the fact that quaternion normalization means that multiplying each component by the same value (in this case, 1 / sin (0.5 × α)) does not affect the resulting orientation.

Oolite Specifics

Although Quaternions are coordinate system indifferent, Oolite, because it makes use of OpenGL, uses a left-handed coordinate system. This means that all positive quaternion rotations about an axis, as discussed in the Overview section above, are anti-clockwise (counter-clockwise) when the axis of rotation is pointing towards you (clockwise if pointing away from you).

Also all Oolite ships and other entities have to be designed with forwards pointing along the z-axis, up along the y-axis and right along the x-axis. These entities have an orientation in space is given by a quaternion (the .orientation JavaScript property) that describes the transformation from this initial design orientation to the required final orientation.

See Also