// (c) Alex McLean 2005 // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. class Spot { public float x; public float y; public int volume; public Spot (float x, float y, int volume) { this.x = x; this.y = y; this.volume = volume; } public void draw() { noStroke(); ellipse(x, y, volume, volume); } }