2023年10月19日 星期四

Yen Week06

week06_1

size(500,500);

textSize(64);

text("Hello World",100,100);


fill(255,0,0);

text("Red",100,200);

week06_2
void setup(){
  size(500,500);
  textSize(64);
}
String line ="Input: ";
void draw(){
  text(line,100,100);
}
void keyPressed(){
  line +=key;
}

week06_3
void setup(){
  size(500,500);
  textSize(64);
}
String line ="Input: ";
void draw(){
  text(line,100,100);
}
void keyPressed(){
  if(key>='A' && key<='Z') line +=key;
  if(key>='a' && key<='z') line +=key;
}




沒有留言:

張貼留言