Py5MouseEvent.get_x()#

Return the x 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 x position of the mouse at the time of this mouse event. This information can also be obtained with mouse_x.

Underlying Processing method: getX

Signatures#

get_x() -> int

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