TrackSystemSettingsStructs.hpp 410 B

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #include <string>
  3. typedef struct {
  4. bool OptiTrack;
  5. bool EMFTrack;
  6. bool SteamVRTrack;
  7. } ExportSettings;
  8. typedef struct {
  9. double length;
  10. double radius;
  11. } OptiTrackSettings;
  12. typedef struct {
  13. double width;
  14. double height;
  15. double depth;
  16. } EMFTrackSettings;
  17. typedef struct {
  18. double length;
  19. } SteamVRTrackSettings;
  20. typedef struct {
  21. std::string identifier;
  22. } ActionPointSettings;