class Dot { PVector pos; float mass; color col; Dot(float x, float y, float m, color c) { pos = new PVector(x, y); mass = m; col = c; } }