autopilot.display
The display module contaions support for getting screen information.
- autopilot.display.is_rect_on_screen(screen_number, rect)
Return True if rect is entirely on the specified screen, with no overlap.
- autopilot.display.is_point_on_screen(screen_number, point)
Return True if point is on the specified screen.
point must be an iterable type with two elements: (x, y)
- autopilot.display.is_point_on_any_screen(point)
Return true if point is on any currently configured screen.
- autopilot.display.move_mouse_to_screen(screen_number)
Move the mouse to the center of the specified screen.
Elements
- Display
- The base class/inteface for the display devices.