La funciónsphere () en p5.js se usa para dibujar una esfera con un radio determinado.
Sintaxis:
sphere( radius )
Parámetros: esta función acepta un solo parámetro de radio que almacena el radio de la esfera.
Los siguientes programas ilustran la funciónsphere() en p5.js:
Ejemplo 1: Este ejemplo usa la funciónsphere() para dibujar el círculo.
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); }
Producción:
Ejemplo 2: Este ejemplo usa la funciónsphere() para dibujar el círculo.
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); }
Salida:
Referencia: https://p5js.org/reference/#/p5/sphere
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA