Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3002 in orxonox.OLD for orxonox/trunk/src


Ignore:
Timestamp:
Nov 26, 2004, 9:41:29 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk/src: typo

Location:
orxonox/trunk/src
Files:
2 edited

Legend:

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

    r3000 r3002  
    846846
    847847/**
    848    \brief Creates a new BenzierCurve
    849 */
    850 BenzierCurve::BenzierCurve (void)
     848   \brief Creates a new BezierCurve
     849*/
     850BezierCurve::BezierCurve (void)
    851851{
    852852  nodeCount = 0;
     
    862862
    863863/**
    864    \brief Deletes a BenzierCurve.
     864   \brief Deletes a BezierCurve.
    865865   It does this by freeing all the space taken over from the nodes
    866866*/
    867 BenzierCurve::~BenzierCurve (void)
     867BezierCurve::~BezierCurve (void)
    868868{
    869869  PathNode* tmpNode;
     
    878878
    879879/**
    880    \brief adds a new Node to the benzier Curve
     880   \brief adds a new Node to the bezier Curve
    881881   \param newNode a Vector to the position of the new node
    882882*/
    883 void BenzierCurve::addNode(const Vector& newNode)
     883void BezierCurve::addNode(const Vector& newNode)
    884884{
    885885  PathNode* tmpNode;
     
    901901   \param t The position on the Curve (0<=t<=1)
    902902*/
    903 void BenzierCurve::calcPos(float t)
     903void BezierCurve::calcPos(float t)
    904904{
    905905  if (nodeCount <=4)
     
    951951  \return a Vector to the calculated position
    952952*/
    953 Vector BenzierCurve::getPos() const
     953Vector BezierCurve::getPos() const
    954954{
    955955  return curvePoint;
     
    961961  \return a Vector to the calculated position
    962962*/
    963 Vector BenzierCurve::getPos(float t)
     963Vector BezierCurve::getPos(float t)
    964964{
    965965  calcPos(t);
  • orxonox/trunk/src/vector.h

    r3000 r3002  
    151151
    152152
    153 //! Benzier Curve
     153//! Bezier Curve
    154154/**
    155    Class to handle benzier curves in 3-dimesnsional space
     155   Class to handle bezier curves in 3-dimesnsional space
    156156   
    157157   needed for  the Tracking system in OrxOnoX.
    158158*/
    159 class BenzierCurve
     159class BezierCurve
    160160{
    161161 private:
     
    174174
    175175 public:
    176   BenzierCurve (void);
    177   ~BenzierCurve (void);
     176  BezierCurve (void);
     177  ~BezierCurve (void);
    178178  void addNode (const Vector& newNode);
    179179  void calcPos (float t);
Note: See TracChangeset for help on using the changeset viewer.