public Plane(Vector3f n, number d, Color c) { normal = n; distance = d; color = c; }
public Sphere(Vector3f p, number r, Color c) { position = p; radius = r; color = c; }