Exemple #1
0
 /// <summary>
 /// Called for every calibration point during a calibration process. This should be
 /// called 1-2 seconds after {@link TETCSharpClient.GazeManager.CalibrationPointStart()}.
 /// <p>
 /// The calibration process must be initiated by a call to {@link TETCSharpClient.GazeManager.CalibrationStart()}
 /// before calling this.
 /// </summary>
 public void CalibrationPointEnd()
 {
     if (isActive)
     {
         if (IsCalibrating)
         {
             apiManager.RequestCalibrationPointEnd();
         }
         else
         {
             Debug.WriteLine("TET C# Client calibration not started!");
         }
     }
     else
     {
         Debug.WriteLine("TET C# Client not activated!");
     }
 }