Simulated Reality SDK 7500c78d v1.30.2.51085 2024-04-26T11:23:03Z
Stable
worldobject.h
Go to the documentation of this file.
1
10#pragma once
11
12#include <vector>
13
14#include "opencv2/opencv.hpp"
15
17
18#ifdef WIN32
19# ifdef COMPILING_DLL_SimulatedRealityCore
20# define DIMENCOSR_API __declspec(dllexport)
21# else
22# define DIMENCOSR_API __declspec(dllimport)
23# endif
24#else
25# define DIMENCOSR_API
26#endif
27
28namespace SR {
29
36protected:
38
40
46#pragma warning(suppress: 4251)
48
49public:
55
63
65
67};
68
69}
70
71#undef DIMENCOSR_API
Class of objects defining the relation between different coordinate systems.
Definition: transformation.h:32
Class representing both real and virtual objects as nodes in the World tree.
Definition: worldobject.h:35
Transformation parentRelation
Definition: worldobject.h:39
cv::Vec3d getRelativePosition()
WorldObject * parent
Definition: worldobject.h:37
cv::Vec3d relativePosition
Definition: worldobject.h:47
WorldObject(WorldObject *parent)
cv::Vec3d getAbsolutePosition()
Namespace containing all C++ Simulated Reality classes.
Definition: srconfiguration.h:25
#define DIMENCOSR_API
Definition: worldobject.h:25