Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3449 in orxonox.OLD for orxonox/trunk/src/vector.cc


Ignore:
Timestamp:
Mar 2, 2005, 2:23:47 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: documented orxonox.cc/h world.cc/h vector.cc/h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/vector.cc

    r3365 r3449  
    151151
    152152/**
    153    \bref returns the voctor normalized to length 1.0
     153   \brief returns the voctor normalized to length 1.0
    154154*/
    155155
     
    170170}
    171171
    172 
     172/**
     173   \brief scales this Vector with Vector v.
     174   \param v the vector to scale this vector with
     175*/
    173176void Vector::scale(const Vector& v)
    174177{
     
    189192
    190193
    191 
     194/**
     195   \brief Vector is looking in the positive direction on all axes after this
     196*/
    192197Vector Vector::abs()
    193198{
     
    473478}
    474479
    475 
     480/**
     481   \brief performs a smooth move.
     482   \param from from where
     483   \param to to where
     484   \param t the time this transformation should take
     485   \param res The approximation-density
     486*/
    476487void Quaternion::quatSlerp(const Quaternion* from, const Quaternion* to, float t, Quaternion* res)
    477488{
     
    802813/**
    803814   \brief create a plane from anchor point and normal
    804    \param n: normal vector
     815   \param norm: normal vector
    805816   \param p: anchor point
    806817*/
Note: See TracChangeset for help on using the changeset viewer.