-
Notifications
You must be signed in to change notification settings - Fork 146
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
Refine Hashable and Equatable on Quaternion #124
Merged
stephentyrone
merged 13 commits into
apple:Quaternions
from
markuswntr:quaternion/hashable
Jul 14, 2020
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
3b33fae
Refine Hashable and Equatable on Quaternion
markuswntr c041680
Update rotation equals documentation on Quaternion
markuswntr 5f84330
Update rotation documentation on Quaternion
markuswntr 8df6bc9
Add canonicalized quaternion representation
markuswntr 30b6e45
Add canonicalized transform representation to Quaternion
markuswntr fabb542
Change hashing behavior of Quaternion to use the canonical form
markuswntr d8e2ea2
Rename rotationEquals to transformationEquals on Quaternion
markuswntr 7cab63d
Rename transformCanonicalized to canonicalizedTransform
markuswntr 039cd4e
Update transformation hashing and equality tests
markuswntr 44a7fd1
Fix invalid canonicalizedTransform for quaternions with negative real
markuswntr 70cf1ad
Remove duplicated comment on equatable
markuswntr bab5bc7
Rename transformEquals to equals(as3DTransform:)
markuswntr f26f167
Update documentation on 3D transformations
markuswntr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
I'd like to make this more precise. If I wasn't concerned about jargon, I would say "the canonical representative of the equivalence class of quaternions representing the same 3d transformation."
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.
"The canonical representative of quaternions with non-negative real components representing the same 3D transformation."
Does that make sense? :)
I guess that's another task to think about over the weekend.