//declares it's going to use both the Points and ObjElps2 classes as a basis for arrays: Points[] myPoints = new Points[20]; ObjElps2[] myObjElps2 = new ObjElps2[myPoints.length]; //defines the image I'll use: PImage bg; void setup () { size(505,569); smooth(); bg = loadImage("ny.jpg"); background(bg); int xr=int(random(width/2)+(width/4)); int yr=int(random(height/2)+(height/4)); for(int i=0; i