Loading...
Processing Forum
Recent Topics
All Forums
Screen name:
sevdibalkan
sevdibalkan's Profile
1
Posts
1
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Expanded view
List view
Private Message
Problem with drawing when invoking external function
[2 Replies]
11-Dec-2011 06:08 PM
Forum:
Programming Questions
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?
«Prev
Next »
Moderate user : sevdibalkan
Forum