Files
processing4/java/examples/Topics/Motion/Reflection2/Orb.pde
2011-09-05 23:58:47 +00:00

15 lines
159 B
Plaintext

class Orb{
float x, y, r;
// Default constructor
Orb() {
}
Orb(float x, float y, float r) {
this.x = x;
this.y = y;
this.r = r;
}
}