p5.js | función rotarY()

La función de rotar Y() en p5.js se usa para rotar la forma o un objeto alrededor del eje y.

Sintaxis: 

rotateY(angle)

Parámetros: esta función acepta un solo parámetro de ángulo que almacena el ángulo con el que se realizará la rotación.

Los siguientes programas ilustran la función de rotaciónY() en p5.js:

Ejemplo 1: Este ejemplo usa la función de rotaciónY() para rotar un objeto alrededor del eje y.  

Javascript

function setup() {
 
    // Create Canvas of given size
    createCanvas(650, 450, WEBGL);
}
 
function draw() {
     
    // Set the background color
    background(220);
     
    // Set stroke weight
    strokeWeight(12);
     
    // Rotation function
    rotate(PI / 7.0);
     
    // Call to rotateY function
    rotateY(millis() / 1000);
     
    // Create rectangle
    rect(3, 3, 200, 39);
     
    // Create ellipse
    ellipse(50, 150, 40, 40);
}

Producción: 

Ejemplo 2: Este ejemplo usa la función de rotaciónY() para rotar un objeto alrededor del eje y.  

Javascript

function setup() {
     
    // Create canvas of given size
    createCanvas(500, 500, WEBGL);
}
  
function draw() {
     
    // Set background color
    background(200);
     
    // Set property to rotate the
    // shape about the y-axis
    rotateY(frameCount * 0.01);
     
    // Set stroke weight
    strokeWeight(2);
     
    // Set fill color
    fill("green");
     
    // Draw of height 100 and radius 50
    cylinder(50, 100);
}

Producción: 

Referencia: https://p5js.org/reference/#/p5/rotateY
 

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *