Документация: кватернионы и версоры / Documentation: quaternions and versors

This commit is contained in:
Andrey Pokidov 2024-11-25 15:41:10 +07:00
parent 48d5a010ec
commit d906c8a8ae
3 changed files with 126 additions and 49 deletions

94
docs/quaternion-eng.md Normal file
View file

@ -0,0 +1,94 @@
# Quaternions
If brief, quaternions are hypercompex numbers with one real component and three
complex components. Quaternions can be represented with formulas:
![Definition of quaternions](./media/quaternion_definition.png)
Where *q* is a quaternion, *w*, *x*, *y* and *z* are real numbers and *i*, *j*
and *k* are imaginary units.
Quaternions can be represented with several ways. For example, a quaternion can
be represented as a tuple of four real numbers:
![Quaternion as a tuple](./media/quaternion_vector4_form.png)
In that case a quaternion reminds a four-dimensional vector. And quaternions do
have many similar features as four-dimensional vectors do. For example:
* summation and subtraction of quaternions are same as for four-dimensional
vectors;
* multiplication and division of a quaternion at a real number are same
as for a four-dimensional vector;
* modulus of a quaternion is calculated the same way as for four-dimensional
vector.
But the product of two quaternions is comletely different result than the dot
product of two four-dimensional vectors.
Another way to represent a quaternion is a pair of a real number and
a three-dimensional vector:
![Quaternion as a pair of a number and a vector](./media/quaternion_mixed_form.png)
Quaternions have many interesting features. In geometry, quaternions are used
to represent and combine rotations in three-dimensional Euclidean space.
Usually quaternions with unit modulus are used to represent rotations. Such
quaterions are named as [versors](./versor-eng.md).
## Implementation of quaternions in the library
There are two varians of implementation of quaternions in the library:
* quaternions
* versors
The main difference implementation of quaternions and versors is that
the versors are designed for representation of rotations in
the three-dimensional Euclidean space while quaternions are implemented in
a more general sense.
Versors are not possible to add and subtract. Versors cannot be mutiplied
or divided with a real number. But quaternions can be added and subtracted,
multiplied and divided with a number.
But versors can be combined. It is the same operation as multiplication of
two quaternions but the function of combination of two versors watches that
the resulting versor has modulus equal to 1.
All the functions which change the state of a versor keep the modulus of
a versor close to 1.
There two structural types for quaternions:
typedef struct {
float s0, x1, x2, x3;
} BgFP32Quaternion;
typedef struct {
double s0, x1, x2, x3;
} BgFP64Quaternion;
And there are two strucutral types for versors:
typedef struct {
const float s0, x1, x2, x3;
} BgFP32Versor;
typedef struct {
const double s0, x1, x2, x3;
} BgFP64Versor;
As you can see there is a difference in the definision of quaternions and
versors: the fields of versors are const while the fields of quaternions
are not const.
This was done intensionally to make a developer to use special functions for
versors to set the state of a versor instead of direct setting of
the field values because versor functions keep the modulus of a versor equal
to 1.
At the same time a developer can read the fields of a versor for his|her own
needs, for example, for saving a versor in a file or pass it via a network.