blender/intern/itasc/WorldObject.hpp
Joseph Eagar 8f788c64db merge with trunk/2.5 at r23876
[[Split portion of a mixed commit.]]
2009-10-22 23:22:05 +00:00

31 lines
657 B
C++

/* $Id: WorldObject.hpp 19907 2009-04-23 13:41:59Z ben2610 $
* WorldObject.h
*
* Created on: Feb 10, 2009
* Author: benoitbolsee
*/
#ifndef WORLDOBJECT_HPP_
#define WORLDOBJECT_HPP_
#include "UncontrolledObject.hpp"
namespace iTaSC{
class WorldObject: public UncontrolledObject {
public:
WorldObject();
virtual ~WorldObject();
virtual void updateCoordinates(const Timestamp& timestamp) {};
virtual void updateKinematics(const Timestamp& timestamp) {};
virtual void pushCache(const Timestamp& timestamp) {};
virtual void initCache(Cache *_cache) {};
protected:
virtual void updateJacobian() {}
};
}
#endif /* WORLDOBJECT_H_ */