Exemple #1
0
 /// <summary>
 /// Called for every calibration point during a calibration process. This call should be followed by a call to
 /// {@link TETCSharpClient.GazeManager.CalibrationPointEnd()} 1-2 seconds later.
 /// <p>
 /// The calibration process must be initiated by a call to {@link TETCSharpClient.GazeManager.CalibrationStart()}
 /// before calling this.
 /// </summary>
 /// <param name="x"/>X coordinate of the calibration point</param>
 /// <param name="y"/>Y coordinate of the calibration point</param>
 public void CalibrationPointStart(int x, int y)
 {
     if (isActive)
     {
         if (IsCalibrating)
         {
             apiManager.RequestCalibrationPointStart(x, y);
         }
         else
         {
             Debug.WriteLine("TET C# Client calibration not started!");
         }
     }
     else
     {
         Debug.WriteLine("TET C# Client not activated!");
     }
 }