Exemple #1
0
 /// <summary>
 /// Switch currently active screen. Enabled the user to take control of which screen is used for calibration
 /// and gaze control.
 /// </summary>
 /// <param name="screenIndex"/>Index of nex screen. On windows 'Primary Screen' has index 0.</param>
 /// <param name="screenResW"/>Screen resolution width in pixels</param>
 /// <param name="screenResH"/>Screen resolution height in pixels</param>
 /// <param name="screenPsyW"/>Physical Screen width in meters</param>
 /// <param name="screenPsyH"/>Physical Screen height in meters</param>
 public void SwitchScreen(int screenIndex, int screenResW, int screenResH, int screenPsyW, int screenPsyH)
 {
     if (isActive)
     {
         apiManager.RequestScreenSwitch(screenIndex, screenResW, screenResH, screenPsyW, screenPsyH);
     }
     else
     {
         Debug.WriteLine("TET C# Client not activated!");
     }
 }