forked from bartvdbraak/blender
8f788c64db
[[Split portion of a mixed commit.]]
31 lines
657 B
C++
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_ */
|