Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10581 in orxonox.OLD for branches/cleanup/src/lib/math


Ignore:
Timestamp:
Feb 8, 2007, 12:20:20 AM (18 years ago)
Author:
bensch
Message:

changed the animation3D and t_animation to match the new list structure… but i think it breaks workability… they are strange anyways

also removed the track, as it seems quite hacked in.
Here i uncommented everything for later reinjection

File:
1 edited

Legend:

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

    r10368 r10581  
    1010#define _CURVE_H
    1111
     12#include <list>
    1213#include "vector.h"
    1314#include "quaternion.h"
    14 
    15 template<class T> class tList;
    16 template<class T> class tIterator;
    1715
    1816//! An Enumerator that defines what sort of Curves are availible
     
    7371  Curve*                dirCurve;        //!< The derivation-curve of this Curve.
    7472
    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.
     74  std::list<PathNode>::iterator   nodeIterator;    //!< An iterator that should point to the current Node
    7775  PathNode*             firstNode;       //!< First node of the curve.
    7876  PathNode*             currentNode;     //!< The node we are working with (the Last node).
Note: See TracChangeset for help on using the changeset viewer.