Processing es un software de código abierto que se utiliza para las comunidades de artes electrónicas y diseño visual. Podemos crear diferentes tipos de artes utilizando nuestras habilidades de codificación como juegos, animación y motor de física, etc.
Para configurar el procesamiento, siga los pasos a continuación:
Paso 1: Descargue el procesamiento para Windows desde aquí .
Paso 2: extraiga el archivo Zip en cualquier carpeta y abra el procesamiento .exe.
Paso 3: El IDE de procesamiento estará abierto donde puede escribir su código.
Ejemplo :
Java
// Program to show moving Ball. // Set up variable position,colour and velocity. PVector pos; PVector vel; int col; // Function to set up size of canvas // and position,velocity and colour. void setup(){ size(600, 600); pos = new PVector(width/2, height/2); vel = new PVector(random(-4, 4), random(-4, 4)); col = floor(random(0, 255)); } // Function to draw eclipse. void draw(){ background(col); fill(231); checkValid(); fill(204, 102, 0); ellipse(pos.x, pos.y, 50, 50); pos.add(vel); } // Function to check the position // of ball must be within screen. void checkValid(){ if(pos.x <= 25 || pos.x >= width - 25){ vel.x *= -1; // Change in colour when it hit the wall. col = floor(random(0 ,255)); } if(pos.y <=25 || pos.y >= height - 25){ vel.y *= -1; // Change in colour when it hit the wall. col = floor(random(0 ,255)); } }
Producción:
Publicación traducida automáticamente
Artículo escrito por _sh_pallavi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA