Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 12, 2005, 12:34:15 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/trackManager: some doxygen-tags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/trackManager/src/lib/math/curve.h

    r3498 r3517  
    1717
    1818//! An abstract class to handle curves. Needed for the Tracking system in orxonox.
     19/**
     20   A Curve is a smooth line which tries to approximate a path through the nodes given to it.
     21   <br>
     22
     23   <b>Usage of Curves:</b><br>
     24   \li Creation: Curve* newCurve = new BezierCurve();
     25   \li Adding some Points: newCurve->addNode([Vector to the point to add]);
     26   \li Get Point on Curve: newCurve->calcPos(timeIndex);    // where timeindex is in the interval [0,1]
     27   <br>
     28   More Fuctionality is:
     29   \li debug():  outputs some info about this curve.
     30   \li getNode(i): returns a Vector to the n'th node of the Curve.
     31   \li getNodeCount(): returns the count of nodes.
     32   <br>
     33   General Info:
     34   \li Curves take rather much power to be created/altered, but are fast calculated at runtime.
     35*/
    1936class Curve
    2037{
     
    3956
    4057 private:
     58  //! rebuilds the Curve with the right algorithm
    4159  virtual void rebuild(void) = 0;
    4260 public:
     
    4563  void addNode(const Vector& newNode, unsigned int insertPosition);
    4664  Vector getNode(unsigned int nodeToFind);
     65  /** \returns the Count of nodes of this Curve */
    4766  inline int getNodeCount(void) { return this->nodeCount;}
    4867
    49   virtual Vector calcPos(float t) = 0;
     68  /**
     69     \brief A virtual function to calculate the Position on the Curve
     70     \returns positionVector
     71     \param t the timeindex on this curve [0,1]f
     72  */
     73  virtual Vector calcPos(float t) = 0;
     74  /**
     75     \brief A virtual function to calculate the Direction of the Curve
     76     \returns directionVector
     77     \param t the timeindex on this curve [0,1]f
     78  */
    5079  virtual Vector calcDir(float t) = 0;
     80  /**
     81     \brief A virtual function to calculate the acceleration on the Curve
     82     \returns accelerationVector
     83     \param t the timeindex on this curve [0,1]f
     84  */
    5185  virtual Vector calcAcc(float t) = 0;
     86  /**
     87     \brief A virtual function to calculate the Quaternion on the Curve
     88     \returns directional Quaternion
     89     \param t the timeindex on this curve [0,1]f
     90  */
    5291  virtual Quaternion calcQuat(float t) = 0;
    5392 
Note: See TracChangeset for help on using the changeset viewer.