Saturday, July 25, 2026
HomeLanguagesJavascriptp5.js sphere() function

p5.js sphere() function

The sphere() function in p5.js is used to draw a sphere with given radius.

Syntax:

sphere( radius )

Parameters: This function accepts single parameter radius which stores the radius of the sphere.

Below programs illustrate the sphere() function in p5.js:

Example 1: This example uses sphere() function to draw the circle.




function setup() {
      
    // Create Canvas of size 600*600
    createCanvas(600, 600, WEBGL);
}
   
function draw() {
      
    // Set background color
    background(200);
     
    // Set filled color of sphere
    fill('green');
     
    // sphere() function called
    sphere(100);
}


Output:

Example 2: This example uses sphere() function to draw the circle.




function setup() {
      
    // Create Canvas of size 600*600
    createCanvas(600, 600, WEBGL);
}
   
function draw() {
      
    // Set background color
    background(200);
     
    // Set filled color of sphere
    fill('yellow');
     
    // Rotate 
    rotateX(frameCount * 0.01);
    rotate(frameCount*0.03);
     
    // sphere() function called
    sphere(140);
}


Output:

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6972 POSTS0 COMMENTS