Changeset 147 in flair-src for trunk/lib/FlairCore
- Timestamp:
- Feb 28, 2017, 12:45:08 PM (8 years ago)
- Location:
- trunk/lib/FlairCore/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/Box.cpp
r15 r147 49 49 } 50 50 51 void Box::SetValueChanged(void) { 51 void Box::SetValueChanged(void) {value_changed = true; } 52 52 53 53 void Box::GetMutex(void) const { ((Layout *)Parent())->mutex->GetMutex(); } -
trunk/lib/FlairCore/src/OneAxisRotation.cpp
r144 r147 57 57 58 58 float OneAxisRotation::GetAngle() const { 59 return pimpl_->GetAngle();59 return Euler::ToRadian(pimpl_->GetAngle()); 60 60 } 61 61 -
trunk/lib/FlairCore/src/OneAxisRotation.h
r144 r147 81 81 */ 82 82 void ComputeRotation(core::RotationMatrix &matrix) const; 83 83 84 /*! 85 * \brief Get angle 86 * 87 * \return angle in radians 88 */ 84 89 float GetAngle() const; 85 90 int GetAxis() const; -
trunk/lib/FlairCore/src/cvmatrix.h
r15 r147 55 55 * Construct an io_data representing a CvMat. \n 56 56 * It uses a cvmatrix_descriptor to get size and elements' names. \n 57 * Names are used for graphs and logs. 57 * Names are used for graphs and logs. \n 58 * All values are initialized to 0. 58 59 * 59 60 * \param parent parent … … 71 72 * 72 73 * Construct an io_data representing a CvMat. \n 73 * Elements are unamed. 74 * Elements are unamed. \n 75 * All values are initialized to 0. 74 76 * 75 77 * \param parent parent
Note:
See TracChangeset
for help on using the changeset viewer.