mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-07 19:17:00 +02:00
Made quaternion docs somewhat clearer.
This commit is contained in:
@@ -12,9 +12,9 @@
|
|||||||
// Quaternions are fast methods of storing and calculating arbitrary rotations.
|
// Quaternions are fast methods of storing and calculating arbitrary rotations.
|
||||||
// Quaternions contain information on both axis of rotation, and rotation angle.
|
// Quaternions contain information on both axis of rotation, and rotation angle.
|
||||||
// You can chain multiple rotation together by multiplying quaternions together.
|
// You can chain multiple rotation together by multiplying quaternions together.
|
||||||
// They don't suffer from the gimbal-lock issues that [X,Y,Z] rotation angles do.
|
// They don't suffer from the gimbal-lock issues that `[X,Y,Z]` rotation angles do.
|
||||||
// Quaternions are stored internally as a 4-value vector:
|
// Quaternions are stored internally as a 4-value vector:
|
||||||
// `[X, Y, Z, W] = W + Xi + Yj + Zk`
|
// `[X,Y,Z,W]`, where the quaternion formula is `W+Xi+Yj+Zk`
|
||||||
|
|
||||||
|
|
||||||
// Internal
|
// Internal
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,129];
|
BOSL_VERSION = [2,0,130];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
Reference in New Issue
Block a user