Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3495 in orxonox.OLD for orxonox/trunk/src


Ignore:
Timestamp:
Mar 11, 2005, 10:20:51 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: taken curve and matrix out of stdincl.h because they are not needed very often.

Location:
orxonox/trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/defs/stdincl.h

    r3475 r3495  
    2222#endif
    2323
     24#include <stdlib.h>
     25#include <string.h>
     26
    2427#include "glincl.h"
    2528
     29
    2630// MATH //
    27 #include "matrix.h"
    2831#include "vector.h"
    29 #include "curve.h"
    3032
    3133#include "list.h"
  • orxonox/trunk/src/lib/graphics/importer/model.cc

    r3473 r3495  
    931931 
    932932  if (count != detail)
    933     cout << "calculation error, count should be " << detail << " but is " << count << endl;
     933    PRINTF(1)("calculation error, count should be %d but is %d.\n", detail, count);
    934934  vertices->debug();
    935935
     
    943943      p3 = 2*i+4;
    944944      p4 = 2*i+3;
    945       cout <<i+1 <<": "<< p1 <<" "<< p2 <<" "<< p3 <<" "<< p4 <<endl;
     945      // something is wrong here
    946946      this->addFace(4, 0, p1, p2, p3, p4);
    947947      this->addFace(3, 0, p4, p1, 2*detail+1);
  • orxonox/trunk/src/track_manager.cc

    r3433 r3495  
    1616
    1717#include "track_manager.h"
     18
     19#include "p_node.h"
     20
    1821#include <stdarg.h>
    19 #include "p_node.h"
    2022
    2123using namespace std;
  • orxonox/trunk/src/track_manager.h

    r3433 r3495  
    1313
    1414#include "stdincl.h"
     15#include "curve.h"
    1516
    1617class PNode;
Note: See TracChangeset for help on using the changeset viewer.