Thursday, August 28, 2025
HomeLanguagesJavascriptp5.js degrees() function

p5.js degrees() function

The degrees() function in p5.js is used to convert a given radian measurement value to its corresponding value in degrees.

Syntax:

degrees( radian )

Parameters: This function accepts single parameter radian which is to be converted into degrees.

Return Value: It returns the converted angle into degrees.

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

Example 1: This example uses degrees() function to convert given radian measurement value to its corresponding value in degrees.




function setup() { 
   
    // Creating Canvas size
    createCanvas(450, 140); 
} 
  
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some angles in radians
    let Rad1 = PI; 
    let Rad2 = PI / 2; 
    let Rad3 = PI / 4; 
    let Rad4 = 67; 
      
      
    // Calling to degrees() function
    let A = degrees(Rad1);
    let B = degrees(Rad2);
    let C = degrees(Rad3);
    let D = degrees(Rad4);
      
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting converted angles into degree
    text("Converted angle in degree is: " + A, 50, 30);
    text("Converted angle in degree is: " + B, 50, 60);
    text("Converted angle in degree is: " + C, 50, 90);
    text("Converted angle in degree is: " + D, 50, 110);
} 


Output:

Example 2: This example uses degrees() function to convert given radian measurement value to its corresponding value in degrees.




function setup() { 
   
    // Creating Canvas size
    createCanvas(450, 140); 
} 
  
function draw() { 
       
    // Set the background color 
    background(220); 
      
    // Calling to degrees() function with different
    // radians value as parameter
    let A = degrees(PI/2);
    let B = degrees(PI/3);
    let C = degrees(PI/4);
    let D = degrees(PI/PI);
      
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting converted angles into degree
    text("Converted angle in degree is: " + A, 50, 30);
    text("Converted angle in degree is: " + B, 50, 60);
    text("Converted angle in degree is: " + C, 50, 90);
    text("Converted angle in degree is: " + D, 50, 110);
}  


Output:

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

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
32244 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11787 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11831 POSTS0 COMMENTS
Shaida Kate Naidoo
6727 POSTS0 COMMENTS
Ted Musemwa
7008 POSTS0 COMMENTS
Thapelo Manthata
6684 POSTS0 COMMENTS
Umr Jansen
6697 POSTS0 COMMENTS