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: getY

Signatures#

get_y() -> int

Updated on March 06, 2023 02:49:26am UTC