noCursor

Static noCursor 

Source
pub static noCursor: NoCursorInternalType
Expand description

Hides the cursor from view.

Examples

function setup() {
  noCursor();
}

function draw() {
  background(200);
  ellipse(mouseX, mouseY, 10, 10);
}