Changeset 5750 in orxonox.OLD for trunk/src/lib
- Timestamp:
- Nov 24, 2005, 12:13:22 AM (19 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/collision_detection/Makefile.am
r5687 r5750 6 6 libORXcd_a_SOURCES = cd_engine.cc \ 7 7 collision.cc \ 8 8 obb.cc \ 9 9 obb_tree.cc \ 10 10 obb_tree_node.cc \ 11 11 bv_tree.cc \ 12 13 14 12 bv_tree_node.cc \ 13 bounding_volume.cc \ 14 bounding_sphere.cc 15 15 16 16 17 17 noinst_HEADERS = cd_engine.h \ 18 18 collision_defs.h \ 19 19 collision.h \ 20 20 obb.h \ 21 21 obb_tree.h \ 22 22 obb_tree_node.h \ 23 23 bv_tree.h \ 24 25 26 24 bv_tree_node.h \ 25 bounding_volume.h \ 26 bounding_sphere.h 27 27 -
trunk/src/lib/coord/p_node.h
r5414 r5750 70 70 inline const Vector& getAbsCoor () const { return this->absCoordinate; }; 71 71 void shiftCoor (const Vector& shift); 72 void shiftCoor (float x, float y, float z) { this->shiftCoor(Vector(x, y, z)); }; 72 73 73 74 void setRelDir (const Quaternion& relDir); … … 127 128 static const char* parentingModeToChar(int parentingMode); 128 129 static PARENT_MODE charToParentingMode(const char* parentingMode); 130 131 129 132 private: 130 133 void init(PNode* parent); -
trunk/src/lib/graphics/light.cc
r5671 r5750 29 29 using namespace std; 30 30 31 CREATE_FACTORY(Light );31 CREATE_FACTORY(Light, CL_LIGHT); 32 32 33 33 //! Definition of the Lights and their Names -
trunk/src/lib/gui/gl_gui/glmenu/glmenu_imagescreen.cc
r5671 r5750 25 25 #include "load_param.h" 26 26 27 CREATE_FACTORY(GLMenuImageScreen );27 CREATE_FACTORY(GLMenuImageScreen, CL_GLMENU_IMAGE_SCREEN); 28 28 29 29 using namespace std; -
trunk/src/lib/particles/particle_emitter.cc
r5671 r5750 29 29 30 30 31 CREATE_FACTORY(ParticleEmitter );31 CREATE_FACTORY(ParticleEmitter, CL_PARTICLE_EMITTER); 32 32 33 33 /** -
trunk/src/lib/particles/particle_system.cc
r5671 r5750 32 32 #include "tinyxml.h" 33 33 34 CREATE_FACTORY(ParticleSystem );34 CREATE_FACTORY(ParticleSystem, CL_PARTICLE_SYSTEM); 35 35 SHELL_COMMAND(texture, ParticleSystem, setMaterialTexture) 36 36 ->defaultValues(1, "maps/evil-flower.png"); -
trunk/src/lib/physics/fields/gravity.cc
r5357 r5750 23 23 using namespace std; 24 24 25 CREATE_FACTORY(Gravity );25 CREATE_FACTORY(Gravity, CL_FIELD_GRAVITY); 26 26 27 27 Gravity::Gravity(const TiXmlElement* root) -
trunk/src/lib/physics/physics_connection.cc
r5671 r5750 29 29 using namespace std; 30 30 31 CREATE_FACTORY(PhysicsConnection );31 CREATE_FACTORY(PhysicsConnection, CL_PHYSICS_CONNECTION); 32 32 33 33 /**
Note: See TracChangeset
for help on using the changeset viewer.