음성고등학교 로고이미지

RSS 페이스북 공유하기 트위터 공유하기 카카오톡 공유하기 카카오스토리 공유하기 네이버밴드 공유하기 프린트하기
튀는 공 클래스
작성자 김용남 등록일 19.11.28 조회수 69

class Ball {
 
  float x, y;
  float xspeed, yspeed;
  color c;
  float r;
 
  Ball(float radius){
    c = color(255, 166, 0);
    r = radius;
    x = random(width);
    y = random(height);
    xspeed = random(1, 5);
    yspeed = random(1, 5);
  }
 
  void move(){
    x += xspeed;
    y += yspeed;
   
    if(x > width || x < 0) {
      xspeed *= -1;
    }
    if(y > height ||y < 0) {
      yspeed *= -1;
    }
  }
 
  void display() {
    fill(c);
    ellipse(x, y, r, r);
  }

다음글 processing snowman