Hi,
I am trying to build a program that shows about 10 randomly moving objects and I have written this code but it ends up in error on the fly method:
- import java.util.Random;
- Plane p;
- void setup()
- {
- size(600, 600);
- smooth();
- background(255);
- Plane p = new Plane();
- }
- void draw() {
- background(255);
- noStroke();
- fill(255,10);
- p.fly();
- }
- public class Plane
- {
- float x;
- float y;
- float xspeed;
- float yspeed;
- public Plane()
- {
- Random generator = new Random();
- x = generator.nextInt(601);
- y = generator.nextInt(601);
- Double xsd = new Double(generator.nextDouble() / 5 + 0.01);
- Double ysd = new Double(generator.nextDouble() / 5 + 0.01);
- //System.out.println(xsd);
- //System.out.println(ysd);
- xspeed = xsd.floatValue();
- yspeed = ysd.floatValue();
- }
- public void fly()
- {
- x += xspeed;
- y += yspeed;
- // Check for bouncing
- if ((x > width) || (x < 0)) {
- xspeed = xspeed * -1;
- }
- if ((y > height) || (y < 0)) {
- yspeed = yspeed * -1;
- }
- // Display at x,y location
- stroke(0);
- fill(175);
- ellipse(x,y,16,16);
- }
- }
What's the problem?
1