Example #1
0
AbstractObject& Obj::rotate(double ax, double ay, double az)
{
    debug("EXPR ROTATE!!!");
    Rotation* t = new Rotation(ax,ay,az);
    t->set_dynamic(true);
    t->add(*this);

    return *t;
}