- Timestamp:
- Jun 7, 2005, 9:10:24 AM (19 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 5 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/configure.ac
r4527 r4529 600 600 src/subprojects/importer/Makefile 601 601 src/subprojects/particles/Makefile 602 src/subprojects/collision_detection/Makefile 602 603 src/subprojects/gui/Makefile 603 604 ]) -
orxonox/trunk/src/defs/include_paths.am
r4504 r4529 16 16 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/physics 17 17 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/physics/fields 18 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/collision_detection 18 19 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/sound 19 20 AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs -
orxonox/trunk/src/lib/graphics/importer/model.h
r4468 r4529 132 132 133 133 protected: 134 float scaleFactor; //!< The Factor with which the Model should be scaled. \todo maybe one wants to scale the Model after Initialisation135 134 void cubeModel(void); 136 135 137 136 Material* findMaterialByName(const char* materialName); 137 138 139 protected: 140 float scaleFactor; //!< The Factor with which the Model should be scaled. \todo maybe one wants to scale the Model after Initialisation 138 141 139 142 private: … … 162 165 ModelGroup* firstGroup; //!< The first of all groups. 163 166 ModelGroup* currentGroup; //!< The currentGroup. this is the one we will work with. 164 int groupCount; 167 int groupCount; //!< The Count of Groups. 165 168 166 169 tList<Material>* materialList; //!< A list for all the Materials in this Model -
orxonox/trunk/src/subprojects/Makefile.am
r4338 r4529 1 1 SUBDIRS = importer \ 2 2 particles \ 3 collision_detection \ 3 4 gui \ 4 5 testmain -
orxonox/trunk/src/subprojects/collision_detection/Makefile.am
r4493 r4529 15 15 16 16 particles_SOURCES= ../framework.cc \ 17 particle_fun.cc \17 collision_detection.cc \ 18 18 $(MAINSRCDIR)/lib/particles/particle_engine.cc \ 19 19 $(MAINSRCDIR)/lib/particles/particle_system.cc \
Note: See TracChangeset
for help on using the changeset viewer.