vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PS_FacePlane.h
Go to the documentation of this file.
1 
8 #pragma once
9 #include "PS_Face.h"
10 
11 namespace APDYNAMICART
12 {
13 
15 {
16 public:
17  PS_FacePlane(double distance, osg::Quat rot);
18  void pointed();
19  void setFace( PS_FacePtr face );
20 
21 
22 private:
23  bool _active;
24 
25  PS_FacePtr _face;
26  osg::Vec3 _position;
27  osg::Quat _orientation;
28 
29 };
30 
31 typedef osg::ref_ptr<PS_FacePlane> PS_FacePlanePtr;
32 
33 }