mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user