Home › Forums › Software Development › .NET Check If Gaze Coordinates are Negative › Reply To: .NET Check If Gaze Coordinates are Negative
03/09/2015 at 12:56 #3391
tobdev
Participant
I figured it out – change the code to:
lightlyFilteredGazeDataStream.Next += (s, e) => { if (e.Y < 0) Console.WriteLine("Y is negative"); };