Implementation of conversion methods to / from euler angles in any sequence #40
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is implemented
This is a follow-up to what I had posted here.
After asking here if there was any interest in implementing some kind of general conversion, as the one existing in Scipy, I was told that the algorithm for this was overcomplicated and hard to maintain.
I agreed, but it led me to study a better algorithm and I ended up coming with something: I recently published an article about a direct formula for the conversion between a quaternion variable to Euler angles in any sequence, which can be read here (Open Access).
Instead of first converting it to rotation matrices and then to angles, it converts directly to angles. Moreover, all of the complicated matrix multiplications on the previous algorithm are replaced by a simple permutation of the quaternion elements.
Compared to either having 12 separate formulas (or 24, taking into account both intrinsic and extrinsic rotations) or using the well known quaternion-to-matrix-to-euler method (used for SciPy, for example), this has 3 main advantages:
Because of all of these advantages, since the publishing of this algorithm in November, it has already been merged into the main development branches of both Scipy and Sympy.
Implementation details
In order to have consistency with the whole Python "ecosystem", I decided to use the same style of sequence definition as used in Scipy: uppercase for intrinsic rotations, lowercase for extrinsic rotations.
Since
to_euler
was defined with a@property
decorator, in order to use theseq
parameter I had to remove the decorator. This might have some implications for other functions, liketo_spherical_coordinates
.Reasoning
While I do agree that Euler angles are terrible to be used directly, I'd argue that most people using quaternionic might be well aware of these problems.
In my particular work, for example, everything I do is done using quaternions, but then at the end of the day I have to show the data in Euler angles in order to communicate with my coworkers.
I'd argue that this could be the case of many people, and it could be nice to have this implemented in quaternionic.
What is missing
I'm not an expert on jit, so if you're interested in having this on the library I'd appreciate some help on the warnings given by
pytest
when jit-arrays are used, namely: