Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 9, 2005, 11:29:19 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/heightMap: merged the Trunk back into branches/heightMap:
merged with Command
svn merge -r 3918:HEAD trunk branches/heightMap
conflicts resolved in favor of the Trunk

Location:
orxonox/branches/heightMap
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/heightMap

    • Property svn:externals
      •  

        old new  
        1 data http://svn.orxonox.ethz.ch/data
         1
  • orxonox/branches/heightMap/src/track_manager.cc

    r3882 r4122  
    2929
    3030using namespace std;
     31
     32CREATE_FACTORY(TrackManager);
    3133
    3234/**
     
    312314  PNode* tmpNode = (PNode*)node;
    313315
    314   if (tmpNode->getRelCoor()->z < 0)
     316  if (tmpNode->getRelCoor().z < 0)
    315317    return 0;
    316318  else
     
    333335  PNode* tmpNode = (PNode*)node;
    334336
    335   Vector nodeRelCoord = *tmpNode->getRelCoor();
     337  Vector nodeRelCoord = tmpNode->getRelCoor();
    336338  float minDist = 100000000;
    337339  int childNumber = 0;
     
    396398  this->textAnimation->setInfinity(ANIM_INF_CONSTANT);
    397399}
     400
     401
     402/**
     403   \brief loads a trackElement from a TiXmlElement
     404   \param root the TiXmlElement to load the Data from
     405
     406*/
     407TrackManager::TrackManager( TiXmlElement* root)
     408{
     409
     410}
     411
     412
    398413
    399414/**
Note: See TracChangeset for help on using the changeset viewer.