Changeset 4836 in orxonox.OLD for orxonox/trunk/src/lib/graphics/spatial_separation
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (19 years ago)
- Location:
- orxonox/trunk/src/lib/graphics/spatial_separation
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.cc
r4819 r4836 22 22 23 23 /** 24 \briefstandard constructor25 \todo this constructor is not jet implemented - do it24 * standard constructor 25 @todo this constructor is not jet implemented - do it 26 26 */ 27 27 Quadtree::Quadtree (modelInfo* pModelInfo) … … 33 33 34 34 /** 35 \briefstandard deconstructor35 * standard deconstructor 36 36 37 37 */ … … 43 43 44 44 /** 45 \briefgives the signal to separate the model into a quadtree45 * gives the signal to separate the model into a quadtree 46 46 */ 47 47 void Quadtree::separate() … … 50 50 51 51 /** 52 \briefdraws the debug quadtree boxes around the model52 * draws the debug quadtree boxes around the model 53 53 */ 54 54 void Quadtree::drawTree(int depth, int drawMode) const -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.h
r4819 r4836 1 1 /*! 2 2 \file quadtree.h 3 \briefDefinition of a spatial data separation using quadtree3 * Definition of a spatial data separation using quadtree 4 4 5 5 */ -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree_node.cc
r4819 r4836 22 22 23 23 /** 24 \briefstandard constructor24 * standard constructor 25 25 */ 26 26 QuadtreeNode::QuadtreeNode (sTriangleExt* triangles, int numTriangles, Quadtree* quadtree) … … 31 31 32 32 /** 33 \briefstandard deconstructor33 * standard deconstructor 34 34 35 35 */ … … 41 41 42 42 /** 43 \briefgives the signal to separate the model into a quadtree44 \param treeDepth the max depth, the steps to go if treeDept == 0 leaf reached43 * gives the signal to separate the model into a quadtree 44 * @param treeDepth the max depth, the steps to go if treeDept == 0 leaf reached 45 45 */ 46 46 void QuadtreeNode::separateNode(int treeDepth) … … 49 49 50 50 /** 51 \briefgives the signal to separate the model into a quadtree52 \param treeDepth the max depth, the steps to go if treeDept == 0 leaf reached51 * gives the signal to separate the model into a quadtree 52 * @param treeDepth the max depth, the steps to go if treeDept == 0 leaf reached 53 53 */ 54 54 void QuadtreeNode::separateNode(float minLength) … … 57 57 58 58 /** 59 \briefdraws the debug quadtree boxes around the model59 * draws the debug quadtree boxes around the model 60 60 */ 61 61 void QuadtreeNode::drawTree(int depth, int drawMode) const -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree_node.h
r4819 r4836 1 1 /*! 2 2 \file proto_class.h 3 \briefDefinition of ...3 * Definition of ... 4 4 5 5 */ -
orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.cc
r4819 r4836 24 24 25 25 /** 26 \briefstandard constructor27 \param model the model that is to be separated28 \param overlapSize each box will overlap for a given size26 * standard constructor 27 * @param model the model that is to be separated 28 * @param overlapSize each box will overlap for a given size 29 29 30 30 The boxes are overlaping because this makes collision detection a lot simpler … … 38 38 39 39 /** 40 \briefstandard constructor41 \param model the model that is to be separated42 \param overlapSize each box will overlap for a given size40 * standard constructor 41 * @param model the model that is to be separated 42 * @param overlapSize each box will overlap for a given size 43 43 44 44 The boxes are overlaping because this makes collision detection a lot simpler … … 53 53 54 54 /** 55 \briefstandard deconstructor55 * standard deconstructor 56 56 57 57 */ … … 63 63 /** 64 64 \brief creates a quadtree 65 \param model the model to do a quadtree on66 \param minLength the minimal length of a quadtree node65 * @param model the model to do a quadtree on 66 * @param minLength the minimal length of a quadtree node 67 67 \return the new quadtree 68 68 */ … … 76 76 /** 77 77 \brief creates a quadtree 78 \param model the model to do a quadtree on79 \param minLength the minimal length of a quadtree node78 * @param model the model to do a quadtree on 79 * @param minLength the minimal length of a quadtree node 80 80 \return the new quadtree 81 81 */ … … 88 88 /** 89 89 \brief creates a quadtree 90 \param model the model to do a quadtree on91 \param minLength the minimal length of a quadtree node90 * @param model the model to do a quadtree on 91 * @param minLength the minimal length of a quadtree node 92 92 \return the new quadtree 93 93 */ … … 103 103 /** 104 104 \brief gets the maximal dimension of a model 105 \param playerModel the model that this measurement is based on105 * @param playerModel the model that this measurement is based on 106 106 \return the maximal dimension of the model 107 107 */ -
orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.h
r4819 r4836 1 1 /*! 2 2 \file spatial_separation.h 3 \briefDefinition of the generic spatial separation process of model data3 * Definition of the generic spatial separation process of model data 4 4 5 5 */
Note: See TracChangeset
for help on using the changeset viewer.