处理是用于电子艺术和视觉设计社区的开源软件。我们可以使用我们的编码技能创建不同类型的艺术,例如游戏、动画和物理引擎等。
要设置处理,请按照以下步骤操作:
步骤 1:从此处下载 Windows 处理程序。
步骤 2:在任何文件夹中解压缩 Zip 文件并打开处理 .exe。
第 3 步: Processing IDE 将打开,您可以在其中编写代码。
例子 :
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 wthin screen.
void checkValid(){
if(pos.x <= 25 || pos.x >= width - 25){
vel.x *= -1;
// Change in clour when it hit the wall.
col = floor(random(0 ,255));
}
if(pos.y <=25 || pos.y >= height - 25){
vel.y *= -1;
// Change in clour when it hit the wall.
col = floor(random(0 ,255));
}
}
输出: