mirror of
https://github.com/processing/processing4.git
synced 2026-01-29 11:21:06 +01:00
15 lines
159 B
Plaintext
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;
|
|
}
|
|
}
|
|
|