第一隻Processing程式

第一隻Processing程式

最近在玩Processing,

相當有趣,

基本上把書中範例都coding一遍,

建議有興趣的可以玩一玩,

安裝也非常簡單,

接下來有空會玩一下在web上的變化。

 

這個範例會產生一個圓圈隨滑鼠位置移動。

 


void setup()
{
  size(480,120);
  fill(0,102);
  smooth();
  noStroke();
}

void draw()
{
  background(204);
  ellipse(mouseX,mouseY,9,9);
}


 

 

自我LV~