Ejemplo n.º 1
0
		protected void OnGazeChanged(GazeEventArgs e)
		{
			if (GazeChanged != null)
			{
				GazeChanged(this, e);
			} 
		}
Ejemplo n.º 2
0
 protected void OnGazeChanged(GazeEventArgs e)
 {
     if (GazeChanged != null)
     {
         GazeChanged(this, e);
     }
 }
Ejemplo n.º 3
0
 public void SetGazeLocation(float x, float y)
 {
     gazeLocation = new GazeEventArgs()
     {
         LeftX              = x,
         LeftY              = y,
         LeftPupilDiameter  = SimulatedPupilSize,
         RightX             = x,
         RightY             = y,
         RightPupilDiameter = SimulatedPupilSize
     };
 }
        public void SetGazeLocation(float x, float y)
        {
            gazeLocation = new GazeEventArgs() 
            {
                LeftX = x,
                LeftY = y,
				LeftPupilDiameter = SimulatedPupilSize,
                RightX = x,
                RightY = y,
				RightPupilDiameter = SimulatedPupilSize
            };
        }