Open In App

p5.js sphere() function

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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



Last Updated : 11 Aug, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads