Expand description
Construct that represents a quaternion.
TODO
Structsยง
- Quaternion
- A Quaternion with the format q = (q.0)i + (q.1)j + (q.2)k + (q.3)
Quaternions are usually stored
q = r + ai + bj + ckin this case however they are stored in the formatq = ai + bj + ck + rto emphasize the fact that you can essentially use the r value as a scaler.