X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=laserbrain_demo;a=blobdiff_plain;f=src%2Fexhibit.cc;h=d76b2912ba5caf727cabe8e125f09d6925f45a21;hp=444fc400bbac8bc674cc66d897a7cff381800fb3;hb=c790c297ef925b7f2257ad41e2123cf86305822c;hpb=cddee551d9bc9ec58e15aeb673f7e8fcf3c163ce diff --git a/src/exhibit.cc b/src/exhibit.cc index 444fc40..d76b291 100644 --- a/src/exhibit.cc +++ b/src/exhibit.cc @@ -1,10 +1,14 @@ #include "exhibit.h" #include "snode.h" +#include "scene.h" class ExhibitPriv { +public: Vec3 orig_pos; Quat orig_rot; SceneNode *orig_node; + + ExhibitPriv(); }; ExSelection::ExSelection(Exhibit *ex) @@ -19,10 +23,14 @@ ExSelection::operator bool() const return ex != 0; } +ExhibitPriv::ExhibitPriv() +{ + orig_node = 0; +} + Exhibit::Exhibit() { priv = new ExhibitPriv; - priv->orig_node = 0; } Exhibit::~Exhibit() @@ -30,6 +38,13 @@ Exhibit::~Exhibit() delete priv; } +void Exhibit::set_node(SceneNode *node) +{ + this->node = priv->orig_node = node; + priv->orig_pos = node->get_position(); + priv->orig_rot = node->get_rotation(); +} + ExSelection Exhibit::select(const Ray &ray) const { return ExSelection(0);