Changeset 10618 in orxonox.OLD for trunk/src/lib/math
- Timestamp:
- Apr 4, 2007, 12:13:53 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 16 16 OrxonoxPlayability.kdevses 17 17 OrxonoxPlayability.kdevelop.pcs 18 orxonox.backtrace 19 orxonox.kdevses 20 orxonox.kdevelop.pcs
-
- Property svn:ignore
-
trunk/src/lib/math/curve.h
r10368 r10618 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 Node 73 std::list<PathNode> nodeList; //!< A list of all the Nodes of a Curve. 77 74 PathNode* firstNode; //!< First node of the curve. 78 75 PathNode* currentNode; //!< The node we are working with (the Last node). … … 105 102 106 103 107 //! B-Spline108 /**109 class to handle b-spline in 3d space110 */111 class BSplieCurve : public Curve112 {113 114 115 };116 117 104 #endif /* _CURVE_H */
Note: See TracChangeset
for help on using the changeset viewer.