음성고등학교 로고이미지

RSS 페이스북 공유하기 트위터 공유하기 카카오톡 공유하기 카카오스토리 공유하기 네이버밴드 공유하기 프린트하기
꿈길 과제
작성자 한소라 등록일 17.06.09 조회수 54
첨부파일

void setup() {
  size(200,200);
}
void draw() {
  background(255);
 
  ellipseMode(CENTER);
  rectMode(CENTER);
 
  //Draw Zoog's body
  stroke(0);
  fill(150);
  rect(100,100,20,100);
 
  //Draw Zoog's head
  stroke(0);
  fill(255);
  ellipse(100,70,60,60);
 
  //Draw Zoog's eyes
  fill(0);
  ellipse(81,70,16,32);
  ellipse(119,70,16,32);
 
  //Draw Zoog's legs
  stroke(0);
  line(90,150,80,160);
  line(110,150,120,160);
}




이전글 꿈길과제
다음글 꿈길 과제