trick/trick_models/ODE/DrawStuff/DrawStuffObject.cpp
Alex Lin b9c871328b Introduce Open Dynamics Engine examples
Added a 3 wheeled car example from the ODE demos.  I collapsed all of the separate classes
handling the world, objects, and drawings into a single class.  Each world is different
and just including that with the objects for these simple examples is easier.  Same goes
for the drawing.

refs #172
2016-02-02 11:19:25 -06:00

13 lines
209 B
C++

#include "DrawStuffObject.hh"
#include "DrawStuff.hh"
DrawStuffObject::~DrawStuffObject() {}
void DrawStuffObject::add_object() {
DrawStuff::add_object(this) ;
}
void DrawStuffObject::command(int) {
}