Py5MouseEvent.get_y()#
Return the y position of the mouse at the time of this mouse event.
Examples#
def setup():
py5.size(200, 200, py5.P2D)
py5.rect_mode(py5.CENTER)
def draw():
py5.square(py5.random(py5.width), py5.random(py5.height), 10)
def mouse_clicked(e):
py5.println(e.get_x(), e.get_y())
Description#
Return the y position of the mouse at the time of this mouse event. This information can also be obtained with mouse_y.
Underlying Processing method: MouseEvent.getY
Signatures#
get_y() -> int
Updated on May 02, 2024 03:24:20am UTC