Changeset 147 in flair-src for trunk/lib/FlairCore


Ignore:
Timestamp:
02/28/17 12:45:08 (7 years ago)
Author:
Sanahuja Guillaume
Message:

modif euler/lowpass

Location:
trunk/lib/FlairCore/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/FlairCore/src/Box.cpp

    r15 r147  
    4949}
    5050
    51 void Box::SetValueChanged(void) { value_changed = true; }
     51void Box::SetValueChanged(void) {value_changed = true; }
    5252
    5353void Box::GetMutex(void) const { ((Layout *)Parent())->mutex->GetMutex(); }
  • trunk/lib/FlairCore/src/OneAxisRotation.cpp

    r144 r147  
    5757
    5858float OneAxisRotation::GetAngle() const {
    59   return pimpl_->GetAngle();
     59  return Euler::ToRadian(pimpl_->GetAngle());
    6060}
    6161
  • trunk/lib/FlairCore/src/OneAxisRotation.h

    r144 r147  
    8181  */
    8282  void ComputeRotation(core::RotationMatrix &matrix) const;
    83 
     83 
     84  /*!
     85  * \brief Get angle
     86  *
     87  * \return angle in radians
     88  */
    8489  float GetAngle() const;
    8590  int GetAxis() const;
  • trunk/lib/FlairCore/src/cvmatrix.h

    r15 r147  
    5555  * Construct an io_data representing a CvMat. \n
    5656  * 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.
    5859  *
    5960  * \param parent parent
     
    7172  *
    7273  * Construct an io_data representing a CvMat. \n
    73   * Elements are unamed.
     74  * Elements are unamed. \n
     75  * All values are initialized to 0.
    7476  *
    7577  * \param parent parent
Note: See TracChangeset for help on using the changeset viewer.