You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
villares edited this page May 24, 2020
·
4 revisions
Nome
pmouseY
Exemplos
// Mova o mouse rapidamente para ver a diferença// entre as posições corrente e a anteriorvoiddraw()
{
background(204);
line(20, mouseY, 80, pmouseY);
}
Descrição
A variável de sistema pmouseY
sempre contém a coordenada vertical anterior do mouse. Esta é a
posição vertical do mouse no quadro imediatamente anterior ao quadro
atual.