2012年11月16日 星期五

B10034043_曾日進

int x=0;
int y=50;
void setup(){
  //PFont font;
size(300,300);
int x=0;
int y=0;
}
void draw(){
  
  
  PFont font;
  font = loadFont("BrowalliaUPC-48.vlw");
  textFont(font);
  background(255);
  fill(0);
  smooth();
  color c = color (25+y,70,100);
  fill (c);
  noStroke();
  ellipse(20+y,80+y,35,35);
  ellipse(150,90,144-y,144-y);
  y=y+1;
  if(y>144){
  y=50;}
  //triangle(50,40,70,30,100,250);
  textSize(144-y);
  fill(40);
  text("Jacky",30,140);
  textSize(y);
  fill(40);
  text("Hello",100,100);


  
}



沒有留言:

張貼留言