protected void OnGazeChanged(GazeEventArgs e) { if (GazeChanged != null) { GazeChanged(this, e); } }
public void SetGazeLocation(float x, float y) { gazeLocation = new GazeEventArgs() { LeftX = x, LeftY = y, LeftPupilDiameter = SimulatedPupilSize, RightX = x, RightY = y, RightPupilDiameter = SimulatedPupilSize }; }