Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3450 in orxonox.OLD for orxonox/trunk/src/p_node.cc


Ignore:
Timestamp:
Mar 2, 2005, 4:10:19 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen-tags: player.cc/h p_node.cc/h base_entity.h skysphere.cc/h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/p_node.cc

    r3433 r3450  
    4545/**
    4646   \brief constructor with coodinates
     47   \param absCoordinate the Absolute coordinate of the Object
     48   \param parent The parent-node of this node.
    4749*/
    4850PNode::PNode (Vector* absCoordinate, PNode* parent )
     
    111113/**
    112114   \brief set relative coordinates
    113    \param relative coordinates to its parent
     115   \param relCoord relative coordinates to its parent
    114116
    115117   it is very importand, that you use this function, if you want to update the
     
    135137
    136138/**
    137    \brief get relative coordinates
    138    \returns relative coordinates to its parent
     139   \param absCoord set absolute coordinate
    139140
    140141   it is very importand, that you use this function, if you want to update the
     
    196197/**
    197198   \brief set relative direction
    198    \param relative direction to its parent
     199   \param relDir to its parent
    199200
    200201   it is very importand, that you use this function, if you want to update the
     
    221222/**
    222223   \brief sets the absolute direction (0,0,1)
    223    \param absolute coordinates
     224   \param absDir absolute coordinates
    224225
    225226   it is very importand, that you use this function, if you want to update the
     
    253254   yea right... shorter...
    254255
     256   \todo implement this
    255257*/
    256258void PNode::shiftDir (Quaternion* shift)
     
    261263/**
    262264   \brief adds a child and makes this node to a parent
    263    \param child reference
     265   \param pNode child reference
    264266
    265267   use this to add a child to this node.
     
    273275/**
    274276   \brief adds a child and makes this node to a parent
    275    \param child reference
    276    \param on which changes the child should also change ist state
     277   \param pNode child reference
     278   \param mode on which changes the child should also change ist state
    277279
    278280   use this to add a child to this node.
     
    287289
    288290/**
    289    /brief removes a child from the node
     291   \brief removes a child from the node
     292   \param pNode the child to remove from this pNode.
    290293*/
    291294void PNode::removeChild (PNode* pNode)
     
    297300/**
    298301   \brief sets the parent of this PNode
     302   \param parent the Parent to set
    299303*/
    300304void PNode::setParent (PNode* parent)
     
    305309/**
    306310   \brief set the mode of this parent manualy
     311   \param mode the mode of the bind-type.
    307312*/
    308313void PNode::setMode (parentingMode mode)
     
    337342/**
    338343   \brief updates the absCoordinate/absDirection
     344   \param timeStamp The timestanp used for to look if calculations should be done
    339345
    340346   this is used to go through the parent-tree to update all the absolute coordinates
     
    400406
    401407
    402 /*
     408/**
    403409  \brief tick
     410  \param dt time to tick
    404411*/
    405412void PNode::processTick (float dt)
     
    414421}
    415422
    416 
     423/**
     424   \param dt time to tick
     425*/
    417426void PNode::tick (float dt)
    418427{}
    419428
    420 
     429/**
     430   \brief displays some information about this pNode
     431*/
    421432void PNode::debug()
    422433{
     
    428439
    429440
    430 /*
     441/**
    431442  \brief set the name of the node
    432443
     
    439450
    440451
    441 /*
     452/**
    442453  \brief gets the name of the node
    443454*/
Note: See TracChangeset for help on using the changeset viewer.