PointShape.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #pragma once
  2. // Include modules
  3. #include "TrackSystemSettingsStructs.hpp"
  4. #include "enums.hpp"
  5. // Include dependencies
  6. #include <osg/Vec3>
  7. #include <osg/Group>
  8. #include <osg/MatrixTransform>
  9. #include <osg/ShapeDrawable>
  10. #include <osg/Switch>
  11. #include <osg/Geode>
  12. class PointShape {
  13. public:
  14. PointShape(const osg::ref_ptr<osg::Group> renderRoot, const ActiveTrackingSystem activeTrackingSystem, osg::Vec3f point, osg::Vec3f normal, osg::Vec3f normalModifier);
  15. ~PointShape();
  16. void moveTo(osg::Vec3f position);
  17. void setNormalModifier(osg::Vec3f normalModifier);
  18. void rotateToNormalVector(osg::Vec3f normal);
  19. void setVisibility(bool mode);
  20. void setColor(osg::Vec4 color);
  21. void setupOptiTrack(OptiTrackSettings optiTrackSettings);
  22. private:
  23. osg::ref_ptr<osg::Switch> _selectionSwitch;
  24. osg::ref_ptr<osg::MatrixTransform> _selectionTranslateGroup;
  25. osg::ref_ptr<osg::MatrixTransform> _selectionRotateGroup;
  26. osg::ref_ptr<osg::MatrixTransform> _selectionMoveToEndGroup;
  27. osg::ref_ptr<osg::Group> _renderRoot;
  28. osg::ref_ptr<osg::ShapeDrawable> _shape;
  29. osg::Vec3f _normalModifier;
  30. double _optiTrackSteamVRLength;
  31. ActiveTrackingSystem _activeTrackingSystem;
  32. };