-
Notifications
You must be signed in to change notification settings - Fork 67
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 Semantics checks to Transform class #62
Conversation
- Transform is now composed of Position and Rotation class objects (pos & rot) - Transform semantics elements are only links to pos and rot semantics - every semantics computation relies on Position and Rotation semantics methods
(- cleanup old friend statements - protected copy-assignment method of TransformSemantics)
(Spatial Inertia, Spatial Acceleration , Velocity , Force and Momentum)
LGTM, merging. |
…formClass Add Semantics checks to Transform class
Actually I just noted a possible problem:
One can call them on a transform using |
Both methods from
... as well as those from
... they all call If I missed something, any comment is most welcome. |
Ah yes, I forgot about the references in |
Fix Travis build
This change is a further step in the implementation of feature #29, with a complete support of semantics in the Transform class.
Refactored Transform class:
Note: These changes are merged with implementation of Spatial Momentum, Spatial Acceleration and Spatial Inertia (#59).