Psychopy coordinates conversion

as per my understanding psychopy tracking the eye position relative to monitor centre, so is there any method of conversion to track the data relative to top left of monitor,
let’s my monitor resolution is (1080,700)
if i am at top left it should be (0,0), and if am at top right(1080,0)
if i am at bottom left it should be (0,700) similarly,
at bottom right it should be (700,1080)

thank you :slight_smile:

This should be simple arithmetic:

your_x = 540 + original_x
your_y = 350 - original_y

1 Like

yea!!! thank you michael