Loading...
Logo
Processing Forum

bouncing ball

in Programming Questions  •  2 years ago  
I'm stumped in trying to tweak this code into returning the ball from the left edge of the screen, instead of the middle of the ball off screen.  Can anyone point me in the right direction of how manipulate the x variable to make that happen?

int diam = 30;  // the diameter of our ellipse
int diam2 = 15;
int x = 0;    //center the ellipse
int y = 0;    //center the ellipse
int speed = 5;

void setup(){
  size(300, 300);
  smooth();
  noStroke();
}

void draw(){
  
  background(255);
  fill(255, 0, 0);
  
  ellipse(x, 150, diam, diam);
  
  x = x + speed;
  
  if((x + 15 > width) || (x < 5)){
    speed = speed * -1;

  }  
}

Replies(2)

Re: bouncing ball

2 years ago
Is this what you want?

Copy code
  1. int diam = 30;  // the diameter of our ellipse
  2. int diam2 = 15;
  3. int x = 0;    //center the ellipse
  4. int y = 0;    //center the ellipse
  5. int speed = 5;

  6. void setup(){
  7.   size(300, 300);
  8.   smooth();
  9.   noStroke();
  10.   ellipseMode(CORNER);
  11. }

  12. void draw(){
  13.   
  14.   background(255);
  15.   fill(255, 0, 0);
  16.   
  17.   ellipse(x, 150, diam, diam);
  18.   
  19.   x = x + speed;
  20.   
  21.   if((x + 30 >= width) || (x <= 0)){
  22.     speed = speed * -1;

  23.   }  
  24. }

Re: bouncing ball

1 years ago
Thanks I see it now!