removed mouseinteraction test for screenspacerenderables

This commit is contained in:
Sebastian Piwell
2016-03-21 09:20:47 -04:00
parent 85225946b9
commit 48978f38fc
4 changed files with 4 additions and 44 deletions
@@ -60,18 +60,6 @@ public:
glm::vec2 sphericalPosition() const {return _sphericalPosition.value();};
float depth() const {return _depth.value();};
void move(glm::vec2 v){
if(_useFlatScreen.value()){
glm::vec2 pos = _euclideanPosition.value();
pos += v;
_euclideanPosition.set(pos);
}else{
glm::vec2 pos = _sphericalPosition.value();
pos += v;
_sphericalPosition.set(pos);
}
};
protected:
void createPlane();
void useEuclideanCoordinates(bool b);