LeiaSR SDK 720218b2 v1.32.7.6322 2025-02-13T14:55:38Z
Stable
screen.h
Go to the documentation of this file.
1
5#pragma once
6
13
14#include <fstream>
15
16#ifdef WIN32
17# ifdef COMPILING_DLL_SimulatedRealityDisplays
18# define DIMENCOSR_API __declspec(dllexport)
19# else
20# define DIMENCOSR_API __declspec(dllimport)
21# endif
22#else
23# define DIMENCOSR_API
24#endif
25
26namespace SR {
27
35 const int resolutionHeight = 1440; // height in pixel count of the resolution that is accepted by the screen
36 const int resolutionWidth = 2560; // width in pixel count of the resolution that is accepted by the screen
37
38 // physical resolution <-> native resolution
39 const int physicalResolutionHeight = 1440; // height in pixel count of the native resolution of the physical screen itself
40 const int physicalResolutionWidth = 2560; // width in pixel count of the native resolution of the physical screen itself
41
42 const float dotPitch_cm = 0.0233f; // Pixel size in cm = dot pitch (why they are the same) 0.00909
43 const float physicalSizeHeight = 40; // height of the screen in cm
44 const float physicalSizeWidth = 70; // width of the screen in cm
45public:
53 static Screen* create(SRContext &context);
54
64 Screen(int resolutionHeight, int resolutionWidth, int physicalResolutionHeight, int physicalResolutionWidth, float pixelSize);
65
72
78 const int getResolutionWidth();
79
86
93
99 const float getPhysicalSizeHeight();
100
106 const float getPhysicalSizeWidth();
107
113 const float getDotPitch();
114};
115
116}
117
118#undef DIMENCOSR_API
Maintains WorldObject and Sense objects during the application lifetime.
Definition: srcontext.h:75
Class of WorldObject representing the screen in real space.
Definition: screen.h:34
const float getPhysicalSizeHeight()
Get the physical height of the screen.
const int getResolutionHeight()
Get the vertical resolution that is accepted by the display.
const float getPhysicalSizeWidth()
Get the physical width of the screen.
Screen(int resolutionHeight, int resolutionWidth, int physicalResolutionHeight, int physicalResolutionWidth, float pixelSize)
Screen Class constructor.
const float getDotPitch()
Get the dot pitch (pixel size)
const int getPhysicalResolutionWidth()
Get the horizontal native resolution of the physical screen itself.
static Screen * create(SRContext &context)
Creates an instance of a Screen class.
const int getPhysicalResolutionHeight()
Get the vertical native resolution of the physical screen itself.
const int getResolutionWidth()
Get the horizontal resolution that is accepted by the display.
Class representing both real and virtual objects as nodes in the World tree.
Definition: worldobject.h:30
Namespace containing all C++ Simulated Reality classes.
Definition: srconfiguration.h:20
#define DIMENCOSR_API
Definition: screen.h:23