noCursor()
EnvironmentDescription
Hides the cursor from view.
Syntax
void noCursor()
Parameters
None
Returns
voidRelated
Under the Hood
From Processing.h:
void noCursor();
Under the Hood
From Processing.cpp:
void PApplet::noCursor() {if(gWindow)glfwSetInputMode(gWindow,GLFW_CURSOR,GLFW_CURSOR_HIDDEN);}