aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/src/EulerAngles
Commit message (Collapse)AuthorAge
* STYLE: Convert CMake-language commands to lower caseGravatar Hans Johnson2019-10-31
| | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case.
* Avoid `I` as an identifier, since it may clash with the C-header complex.hGravatar Christoph Hertzberg2019-01-25
|
* Use `static const int` instead of `enum` to avoid numerous ↵Gravatar Christoph Hertzberg2018-09-07
| | | | `local-type-template-args` warnings in C++03 mode
* Fix typos found using codespellGravatar Gael Guennebaud2018-06-07
|
* bug #1464 : Fixes construction of EulerAngles from 3D vector expression.Gravatar Abhijit Kundu2017-08-30
|
* Fix compilation.Gravatar Gael Guennebaud2016-11-23
|
* Allow to construct EulerAngles from 3D vector directly.Gravatar Tal Hadad2016-11-18
| | | | Using assignment template struct to distinguish between 3D vector and 3D rotation matrix.
* Add isApprox() and cast() functions.Gravatar Tal Hadad2016-10-17
| | | | test cases included
* Fix calc bug, docs and better testing.Gravatar Tal Hadad2016-10-16
| | | | | | | Test code changes: * better coded * rand and manual numbers * singularity checking
* Merge Hongkai Dai correct range calculation, and remove ranges from API.Gravatar Tal Hadad2016-10-14
|\ | | | | | | Docs updated.
| * implement euler angles with the right rangesGravatar Hongkai Dai2016-10-13
|/
* remove ternary operator in euler anglesGravatar Hongkai Dai2016-09-19
|
* Complete docs and add ostream operator for EulerAngles.Gravatar Tal Hadad2016-06-19
|
* Little bit docsGravatar Tal Hadad2016-06-13
|
* Add static assertionGravatar Tal Hadad2016-06-13
|
* More docs, and minor code fixesGravatar Tal Hadad2016-06-12
|
* Doc EulerAngles class, and minor fixes.Gravatar Tal Hadad2016-06-06
|
* Fix Gael reports (except documention)Gravatar Tal Hadad2016-06-02
| | | | | | | | | | | | | | - "Scalar angle(int) const" should be "const Vector& angles() const" - then method "coeffs" could be removed. - avoid one letter names like h, p, r -> use alpha(), beta(), gamma() ;) - about the "fromRotation" methods: - replace the ones which are not static by operator= (as in Quaternion) - the others are actually static methods: use a capital F: FromRotation - method "invert" should be removed. - use a macro to define both float and double EulerAnglesXYZ* typedefs - AddConstIf -> not used - no needs for NegateIfXor, compilers are extremely good at optimizing away branches based on compile time constants: if(IsHeadingOpposite-=IsEven) res.alpha() = -res.alpha();
* Fix commentsGravatar Tal Hadad2015-12-20
|
* Use RotationBase, test quaternions and support ranges.Gravatar Tal Hadad2015-12-20
|
* Remove unneccesary comment.Gravatar Tal Hadad2015-12-20
|
* Much better tests, and a little bit more functionality.Gravatar Tal Hadad2015-12-20
|
* Initial fork of unsupported module EulerAngles.Gravatar Tal Hadad2015-09-27