Unigine::Synker::SynckerInterface Class
Header: | #include <SynckerInterface.h> |
This class represents the base interface of the Syncker, from which master and slave interfaces are inherited. It contains all common functions available for both slave and master.
Syncker plugin must be loaded.
MasterInterface Class
Members
void setInterpolation(int enabled)
Sets a value indicating if interpolation and extrapolation should be enabled for the computer.Arguments
- int enabled - 1 to enable interpolation and extrapolation for the computer; 0 - to disable.
int isInterpolation()
Returns a value indicating if interpolation and extrapolation are enabled for the computer.Return value
1 if interpolation and extrapolation are enabled for the computer; otherwise, 0.void setInterpolationPeriod(double period)
Sets the interpolation period value for the computer.Arguments
- double period - Interpolation period value, in seconds. The default value is 0.04.
double getInterpolationPeriod()
Returns the current interpolation period value for the computer.Return value
Interpolation period value, in seconds. The default value is 0.04.void setExtrapolationPeriod(double period)
Sets the extrapolation period value for the computer.Arguments
- double period - Extrapolation period value, in seconds. The default value is 0.04.
int getExtrapolationPeriod()
Returns the current extrapolation period value for the computer.Return value
Extrapolation period value, in seconds. The default value is 0.2.void loadViewConfig(const char * name)
Loads view configuration from the specified *.proj file.Arguments
- const char * name - Path to the *.proj file.
void setView(int display, const char * surface_name)
Assigns the specified display or projector stored in the configuration file to the specified display of the computer.Arguments
- int display - Display number to assign the viewport to.
- const char * surface_name - Name of the display or projector stored in the configuration file that represents the viewport.
const char * getView(int display)
Returns the current display or projector stored in the configuration file and assigned to the given display of the computer.Arguments
- int display - Display number.
Return value
Name of the display or projector stored in the configuration file and assigned to the given display.void clearViews()
Clears all views assigned to the displays of the computer.Math::vec3 getCAVEHead()
Returns the current viewer's head position.Return value
Viewer's head position coordinates.void setDebug(int enabled, int x, int y, int align_mask)
Enables or disables displaying of debug information at the specified position on the screen.Arguments
- int enabled - 1 to display the debug information; 0 - to hide it.
- int x - Horizontal margin of the debug information block. The default value is 10.
- int y - Vertical margin of the debug information block. The default value is 10.
- int align_mask - Alignment mask. One of the Gui::ALIGN_* variables or their combination. The default value is Gui::ALIGN_RIGHT | Gui::ALIGN_BOTTOM.
int isDebug()
Returns a value indicating if the debug information is to be displayed.Return value
1 if the debug information is to be displayed; otherwise, 0.Last update: 2017-12-21
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)