p5.js | sq() function
The sq() function in p5.js is used to calculate the square value of a number. The square of a number is always positive.
Syntax
sq(number)
Parameters: The function accepts only one parameter as mentioned above and described below:
Below program illustrates the sq() function in p5.js:
Example:
function setup() { //create Canvas of size 270*80 createCanvas(270, 80); } function draw() { background(220); //initialize the parameter let x = 4; //call to sq() function let y = sq(x); textSize(16); fill(color('red')); text("Given Number is : " + x, 50, 30); text("Computed Number is : " + y, 50, 50); } |
chevron_right
filter_none
Output:

Reference: https://p5js.org/reference/#/p5/sq
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- How to get the function name inside a function in PHP ?
- PHP | Ds\Set first() Function
- p5.js | hue() function
- p5.js | red() function
- PHP | exp() Function
- D3.js | d3.hcl() Function
- p5.js | min() function
- p5.js | nfp() Function
- D3.js | d3.set.add() Function
- p5.js | nfs() Function
- PHP | dir() Function
- p5.js | max() function
- CSS | url() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



