Files
processing4/java/examples/Topics/Motion/Reflection2/Orb.pde
benfry eb64b2d4fc
2011-01-26 19:22:19 +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;
}
}