Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4836 in orxonox.OLD for orxonox/trunk/src/lib/collision_detection


Ignore:
Timestamp:
Jul 12, 2005, 12:33:16 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: renamed all the \param → @param and so on in Doxygen tags.
Thanks a lot to the kDevelop team. this took since the last commit :)

Location:
orxonox/trunk/src/lib/collision_detection
Files:
20 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/collision_detection/bounding_sphere.cc

    r4513 r4836  
    2222
    2323/**
    24    \brief standard constructor
     24 * standard constructor
    2525*/
    2626BoundingSphere::BoundingSphere ()
     
    3131
    3232/**
    33    \brief standard deconstructor
     33 * standard deconstructor
    3434
    3535*/
  • orxonox/trunk/src/lib/collision_detection/bounding_sphere.h

    r4525 r4836  
    11/*!
    22    \file bounding_sphere.h
    3     \brief Definition of a bounding sphere
     3  * Definition of a bounding sphere
    44
    55*/
  • orxonox/trunk/src/lib/collision_detection/bounding_volume.cc

    r4814 r4836  
    2323
    2424/**
    25    \brief standard constructor
     25 * standard constructor
    2626*/
    2727BoundingVolume::BoundingVolume ()
     
    3434
    3535/**
    36    \brief standard deconstructor
     36 * standard deconstructor
    3737
    3838*/
  • orxonox/trunk/src/lib/collision_detection/bounding_volume.h

    r4814 r4836  
    11/*!
    22    \file bounding_volume.h
    3     \brief Definition of a bounding volume for collision detection algorithms
     3  * Definition of a bounding volume for collision detection algorithms
    44
    55 */
  • orxonox/trunk/src/lib/collision_detection/bv_tree.cc

    r4528 r4836  
    2222
    2323/**
    24    \brief standard constructor
     24 * standard constructor
    2525*/
    2626BVTree::BVTree ()
     
    3232
    3333/**
    34    \brief standard deconstructor
     34 * standard deconstructor
    3535
    3636*/
  • orxonox/trunk/src/lib/collision_detection/bv_tree.h

    r4712 r4836  
    11/*!
    22    \file bv_tree.h
    3     \brief Definition of a bounding volume tree
     3  * Definition of a bounding volume tree
    44
    55*/
  • orxonox/trunk/src/lib/collision_detection/bv_tree_node.cc

    r4814 r4836  
    2222
    2323/**
    24    \brief standard constructor
     24 * standard constructor
    2525*/
    2626BVTreeNode::BVTreeNode ()
     
    3232
    3333/**
    34    \brief standard deconstructor
     34 * standard deconstructor
    3535
    3636*/
  • orxonox/trunk/src/lib/collision_detection/bv_tree_node.h

    r4702 r4836  
    11/*!
    22    \file bv_tree.h
    3     \brief Definition of a bounding volume tree
     3  * Definition of a bounding volume tree
    44
    55*/
  • orxonox/trunk/src/lib/collision_detection/cd_engine.cc

    r4742 r4836  
    2727
    2828/**
    29    \brief standard constructor
     29 * standard constructor
    3030*/
    3131CDEngine::CDEngine ()
     
    3838
    3939/**
    40    \brief the singleton reference to this class
     40 * the singleton reference to this class
    4141*/
    4242CDEngine* CDEngine::singletonRef = NULL;
    4343
    4444/**
    45    \brief standard deconstructor
     45 * standard deconstructor
    4646
    4747*/
  • orxonox/trunk/src/lib/collision_detection/cd_engine.h

    r4746 r4836  
    11/*!
    22    \file cd_engine.h
    3     \brief Definition of the collision detection engine
     3  * Definition of the collision detection engine
    44
    55*/
     
    3535 public:
    3636  virtual ~CDEngine();
    37   /** \returns a Pointer to the only object of this Class */
     37  /** @returns a Pointer to the only object of this Class */
    3838  static CDEngine* getInstance() { if (!singletonRef) singletonRef = new CDEngine(); return singletonRef; }
    3939  void init();
  • orxonox/trunk/src/lib/collision_detection/collision.cc

    r4511 r4836  
    2222
    2323/**
    24    \brief standard constructor
     24 * standard constructor
    2525*/
    2626Collision::Collision ()
     
    3232
    3333/**
    34    \brief standard deconstructor
     34 * standard deconstructor
    3535
    3636*/
  • orxonox/trunk/src/lib/collision_detection/collision.h

    r4544 r4836  
    11/*!
    22    \file collision.h
    3     \brief Definition of a collision event
     3  * Definition of a collision event
    44
    55*/
  • orxonox/trunk/src/lib/collision_detection/collision_defs.h

    r4520 r4836  
    11/*!
    22    \file collision_defs.h
    3     \brief Definition of some global collision data
     3  * Definition of some global collision data
    44
    55*/
  • orxonox/trunk/src/lib/collision_detection/lin_alg.h

    r4746 r4836  
    11/*!
    22    \file lin_alg.h
    3     \brief Definition of some important linear algebra formulas
     3  * Definition of some important linear algebra formulas
    44
    55    compute the eigenpairs (eigenvalues and eigenvectors) of a real symmetric matrix "A" by the Jacobi method
  • orxonox/trunk/src/lib/collision_detection/obb.cc

    r4815 r4836  
    2424
    2525/**
    26    \brief standard constructor
     26 * standard constructor
    2727*/
    2828OBB::OBB ()
     
    3737
    3838/**
    39    \brief standard deconstructor
     39 * standard deconstructor
    4040
    4141*/
  • orxonox/trunk/src/lib/collision_detection/obb.h

    r4814 r4836  
    11/*!
    22    \file obb.h
    3     \brief Definition of an OBB (object Oriented Bounding Box)
     3  * Definition of an OBB (object Oriented Bounding Box)
    44
    55*/
  • orxonox/trunk/src/lib/collision_detection/obb_tree.cc

    r4814 r4836  
    2828
    2929/**
    30    \brief standard constructor
     30 * standard constructor
    3131*/
    3232OBBTree::OBBTree ()
     
    8282
    8383/**
    84    \brief standard deconstructor
     84 * standard deconstructor
    8585
    8686*/
  • orxonox/trunk/src/lib/collision_detection/obb_tree.h

    r4702 r4836  
    11/*!
    22    \file obb_tree.h
    3     \brief Definition of an obb tree (object oriented Bounding Box)
     3  * Definition of an obb tree (object oriented Bounding Box)
    44
    55*/
  • orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc

    r4815 r4836  
    4343
    4444/**
    45    \brief standard constructor
     45 * standard constructor
    4646 */
    4747OBBTreeNode::OBBTreeNode ()
     
    7676
    7777/**
    78    \brief standard deconstructor
     78 * standard deconstructor
    7979 */
    8080OBBTreeNode::~OBBTreeNode ()
     
    9898
    9999/**
    100    \brief creates a new BVTree or BVTree partition
    101    \param depth: how much more depth-steps to go: if == 1 don't go any deeper!
    102    \param verticesList: the list of vertices of the object - each vertices triple is interpreted as a triangle
     100 * creates a new BVTree or BVTree partition
     101 * @param depth: how much more depth-steps to go: if == 1 don't go any deeper!
     102 * @param verticesList: the list of vertices of the object - each vertices triple is interpreted as a triangle
    103103 */
    104104void OBBTreeNode::spawnBVTree(const int depth, sVec3D *verticesList, const int length)
     
    494494/**
    495495  \brief this separates an ob-box in the middle
    496   \param box: the box to separate
     496* @param box: the box to separate
    497497
    498498  this will separate the box into to smaller boxes. the separation is done along the middle of the longest axis
  • orxonox/trunk/src/lib/collision_detection/obb_tree_node.h

    r4746 r4836  
    11/*!
    22    \file bv_tree.h
    3     \brief Definition of a bounding volume tree
     3  * Definition of a bounding volume tree
    44
    55 */
     
    6060    static OBBTree*     obbTree;                    //!< reference to the obb tree
    6161    Plane*              separationPlane;            //!< the separation plane of the obb
    62     sVec3D*             sepPlaneCenter;             //!< only needed to draw plane \todo: separationPlane drawing
     62    sVec3D*             sepPlaneCenter;             //!< only needed to draw plane @todo: separationPlane drawing
    6363    int                 longestAxisIndex;           //!< only needed to draw plane
    6464
Note: See TracChangeset for help on using the changeset viewer.