Skip to content

Commit

Permalink
Mapping fix
Browse files Browse the repository at this point in the history
  • Loading branch information
domstoppable committed Aug 30, 2024
1 parent 5e2ca04 commit 5bf733e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def _poll(self):

gaze_in_pix = [
surface_gaze.x * self._window_size[0],
surface_gaze.y * self._window_size[1]
(surface_gaze.y + 1.0) * self._window_size[1]
]

gaze_in_display_units = self._eyeTrackerToDisplayCoords(gaze_in_pix)
Expand Down

0 comments on commit 5bf733e

Please sign in to comment.