Changeset 4568 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Jun 9, 2005, 6:01:18 PM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 3 edited
- 2 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/Makefile.am
r4564 r4568 15 15 lib/particles/libORXparticles.a \ 16 16 lib/collision_detection/libORXcd.a \ 17 lib/tinyxml/libtinyxml.a 17 lib/tinyxml/libtinyxml.a \ 18 util/newmat/libnewmat.a 18 19 19 20 orxonox_LDADD = lib/gui/libORXgui.a \ … … 25 26 lib/collision_detection/libORXcd.a \ 26 27 lib/tinyxml/libtinyxml.a \ 28 util/newmat/libnewmat.a \ 29 27 30 $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) 28 31 -
orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc
r4562 r4568 135 135 printf("center: %f, %f, %f\n\n", center.x, center.y, center.z); 136 136 137 for(int i = 0; i < length; i++)138 {139 printf("vertex %i: %f, %f, %f\n", i, verticesList[i][0], verticesList[i][1], verticesList[i][2]);140 }141 142 137 143 138 for(int i = 0; i < 3; ++i) … … 210 205 void OBBTreeNode::drawBVBlended(int currentDepth, const int depth) const 211 206 {} 207 208 209 void OBBTreeNode::debug() 210 { 211 212 /* 213 for(int i = 0; i < length; i++) 214 { 215 printf("vertex %i: %f, %f, %f\n", i, verticesList[i][0], verticesList[i][1], verticesList[i][2]); 216 } 217 */ 218 } -
orxonox/trunk/src/lib/collision_detection/obb_tree_node.h
r4560 r4568 36 36 virtual void drawBVBlended(int currentDepth, const int depth) const; 37 37 38 void debug(); 39 38 40 private: 39 41 OBB* createBox();
Note: See TracChangeset
for help on using the changeset viewer.