Changeset 10581 in orxonox.OLD for branches/cleanup/src/lib/math
- Timestamp:
- Feb 8, 2007, 12:20:20 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cleanup/src/lib/math/curve.h
r10368 r10581 10 10 #define _CURVE_H 11 11 12 #include <list> 12 13 #include "vector.h" 13 14 #include "quaternion.h" 14 15 template<class T> class tList;16 template<class T> class tIterator;17 15 18 16 //! An Enumerator that defines what sort of Curves are availible … … 73 71 Curve* dirCurve; //!< The derivation-curve of this Curve. 74 72 75 tList<PathNode>*nodeList; //!< A list of all the Nodes of a Curve.76 tIterator<PathNode>*nodeIterator; //!< An iterator that should point to the current Node73 std::list<PathNode> nodeList; //!< A list of all the Nodes of a Curve. 74 std::list<PathNode>::iterator nodeIterator; //!< An iterator that should point to the current Node 77 75 PathNode* firstNode; //!< First node of the curve. 78 76 PathNode* currentNode; //!< The node we are working with (the Last node).
Note: See TracChangeset
for help on using the changeset viewer.