-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rotations using Euler parameters and MRPs #96
Add rotations using Euler parameters and MRPs #96
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #96 +/- ##
==========================================
+ Coverage 55.57% 59.83% +4.26%
==========================================
Files 55 59 +4
Lines 4763 5530 +767
==========================================
+ Hits 2647 3309 +662
- Misses 2116 2221 +105
☔ View full report in Codecov by Sentry. 📢 Have feedback on the report? Share it here. |
Lots more work needed
Must expand greatly
Cannot use proptest or kani sadly
eul2xf_c uses passive rotation, but that's just super confusing to me. Great source here: https://danceswithcode.net/engineeringnotes/quaternions/quaternions.html
Heap is required due to life time of pointer to u8s. The other option would be to use a Box<Deref<target=[u8]>> but the data is still on the heap... With the Bytes approach, data could be loaded from a pointer with a static lifetime.
…ematics-so3-group
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks generally good. I'll work with this and make changes when and where I see fit. This is pre-1.0 anyway.
The TODO list is in the issue.
Closes #35