Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4568 in orxonox.OLD


Ignore:
Timestamp:
Jun 9, 2005, 6:01:18 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: moved the newmat source to lib

Location:
orxonox/trunk/src
Files:
3 edited
2 copied
1 moved

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/Makefile.am

    r4564 r4568  
    1515                       lib/particles/libORXparticles.a \
    1616                       lib/collision_detection/libORXcd.a \
    17                        lib/tinyxml/libtinyxml.a
     17                       lib/tinyxml/libtinyxml.a \
     18                       util/newmat/libnewmat.a
    1819
    1920orxonox_LDADD = lib/gui/libORXgui.a \
     
    2526                lib/collision_detection/libORXcd.a \
    2627                lib/tinyxml/libtinyxml.a \
     28                util/newmat/libnewmat.a \
     29               
    2730                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
    2831
  • orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc

    r4562 r4568  
    135135  printf("center: %f, %f, %f\n\n", center.x, center.y, center.z);
    136136
    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 
    142137   
    143138  for(int i = 0; i < 3; ++i)
     
    210205void OBBTreeNode::drawBVBlended(int currentDepth, const int depth) const
    211206{}
     207
     208
     209void 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  
    3636  virtual void drawBVBlended(int currentDepth, const int depth) const;
    3737
     38  void debug();
     39
    3840 private:
    3941  OBB* createBox();
Note: See TracChangeset for help on using the changeset viewer.