Changeset 3374
- Timestamp:
- 02/08/10 14:46:08 (5 weeks ago)
- Location:
- plugins/branches/0185_GEN_PHYSICS_REFACTOR_2/ZODE/src
- Files:
-
- 2 modified
-
PhysicsService.cpp (modified) (1 diff)
-
PhysicsService.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
plugins/branches/0185_GEN_PHYSICS_REFACTOR_2/ZODE/src/PhysicsService.cpp
r3117 r3374 46 46 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 47 47 PhysicsService::pPhysicsZone_type 48 PhysicsService::createZone( )48 PhysicsService::createZone(const Math::Vector3& _min, const Math::Vector3& _max) 49 49 { 50 // TODO What to do with _min and _max? Does ODE use these? 51 50 52 std::cout << "PhysicsService::createZone()" << std::endl; 51 53 pPhysicsZone_type pZone = pPhysicsZone_type(new PhysicsZone(), boost::bind(&PhysicsService::onDestroyPhysicsZone, this, _1)); -
plugins/branches/0185_GEN_PHYSICS_REFACTOR_2/ZODE/src/PhysicsService.hpp
r3117 r3374 49 49 /// @{ 50 50 public: 51 virtual pPhysicsZone_type createZone();51 virtual pPhysicsZone_type createZone(const Math::Vector3& _min, const Math::Vector3& _max); 52 52 virtual void stepSimulation(double _elapsedTime); 53 53 /// @}
