Changeset 3374

Show
Ignore:
Timestamp:
02/08/10 14:46:08 (4 weeks ago)
Author:
trichards
Message:

Minor adjustments to ZODE to bring it up to date with the latest framework changes.

Location:
plugins/branches/0185_GEN_PHYSICS_REFACTOR_2/ZODE/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • plugins/branches/0185_GEN_PHYSICS_REFACTOR_2/ZODE/src/PhysicsService.cpp

    r3117 r3374  
    4646//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 
    4747PhysicsService::pPhysicsZone_type 
    48 PhysicsService::createZone() 
     48PhysicsService::createZone(const Math::Vector3& _min, const Math::Vector3& _max) 
    4949{ 
     50    // TODO What to do with _min and _max?  Does ODE use these? 
     51 
    5052    std::cout << "PhysicsService::createZone()" << std::endl; 
    5153    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  
    4949    /// @{ 
    5050public: 
    51     virtual pPhysicsZone_type createZone(); 
     51        virtual pPhysicsZone_type createZone(const Math::Vector3& _min, const Math::Vector3& _max); 
    5252        virtual void stepSimulation(double _elapsedTime); 
    5353    /// @}