Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


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

orxonox/trunk/src: typo

File:
1 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);
Note: See TracChangeset for help on using the changeset viewer.