class VecSet { int targX; int targY; int numVs; Vec[] Vs = new Vec[numVs]; VecSet(int x, int y, int num) { targX = x; targY = y; numVs = num; getSet(num); } VecSet(int x, int y, int w, int h, int num){ targX = x; targY = y; numVs = num; for(int i=0; i