Hello as you can tell I'm new to this forum and processing.
Can someone help me correct this error?
class Attractors
{
Rectangle a;
PVector v2;
float thresh = 50;
Attractors(int x, int y, int w, int h){
a = new Rectangle(x,y,w,h);
v2 = new PVector(a.x, a.y);
}
1