OptiTrackPoint.hpp 362 B

123456789101112131415
  1. #pragma once
  2. #include "defaults.hpp"
  3. #include "TrackPoint.hpp"
  4. class OptiTrackPoint: TrackPoint {
  5. public:
  6. OptiTrackPoint(const osg::Vec3 point, const osg::Vec3 normal, const double length = OPTITRACK_DEFAULT_LENGTH, const double radius = OPTITRACK_DEFAULT_RADIUS);
  7. double getLength();
  8. double getRadius();
  9. private:
  10. double _length;
  11. double _radius;
  12. };