pmouseY

Input / Mouse

Description

The vertical position of the mouse in the previous frame.

Syntax

pmouseY

Parameters

None

Returns

float

Related

Under the Hood

From Processing.h:

float mouseX = 0, mouseY = 0, pmouseX = 0, pmouseY = 0;

Under the Hood

From Processing.cpp:

pmouseY=mouseY;