Files
processing4/android/examples/Topics/Motion/Reflection2/Orb.pde
2011-03-07 00:14:46 +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;
}
}