The noCursor() function in p5.js is used to hide the cursor from view.
Syntax
noCursor()
Parameters: This function does not accept any parameter.
Below program illustrates the noCursor() function in p5.js:
Example-1:
function setup() {
createCanvas(1000, 400);
textSize(20);
noCursor();
}
function draw() {
background(200);
rect(mouseX, mouseY, 30, 30);
text( "Position of mouse is "
+mouseX+ ", " +mouseY, 30, 40);
}
|
Output:

Example-2:
function setup() {
createCanvas(1000, 400);
textSize(20);
noCursor();
}
function draw() {
background(200);
circle(mouseX, mouseY, 10);
text( "Position of mouse is "
+mouseX+ ", " +mouseY, 30, 40);
}
|
Output:

Reference: https://p5js.org/reference/#/p5/noCursor