noCursor()

Environment

Description

Hides the cursor from view.

Syntax

void noCursor()

Parameters

None

Returns

void

Related

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);}