Changeset 3495 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Mar 11, 2005, 10:20:51 AM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/defs/stdincl.h
r3475 r3495 22 22 #endif 23 23 24 #include <stdlib.h> 25 #include <string.h> 26 24 27 #include "glincl.h" 25 28 29 26 30 // MATH // 27 #include "matrix.h"28 31 #include "vector.h" 29 #include "curve.h"30 32 31 33 #include "list.h" -
orxonox/trunk/src/lib/graphics/importer/model.cc
r3473 r3495 931 931 932 932 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); 934 934 vertices->debug(); 935 935 … … 943 943 p3 = 2*i+4; 944 944 p4 = 2*i+3; 945 cout <<i+1 <<": "<< p1 <<" "<< p2 <<" "<< p3 <<" "<< p4 <<endl;945 // something is wrong here 946 946 this->addFace(4, 0, p1, p2, p3, p4); 947 947 this->addFace(3, 0, p4, p1, 2*detail+1); -
orxonox/trunk/src/track_manager.cc
r3433 r3495 16 16 17 17 #include "track_manager.h" 18 19 #include "p_node.h" 20 18 21 #include <stdarg.h> 19 #include "p_node.h"20 22 21 23 using namespace std; -
orxonox/trunk/src/track_manager.h
r3433 r3495 13 13 14 14 #include "stdincl.h" 15 #include "curve.h" 15 16 16 17 class PNode;
Note: See TracChangeset
for help on using the changeset viewer.