enter image description herevoid draw();{ //background(0);
PVector mouse = new PVector(mouseX, mouseY); PVector center = new PVector(width/2, height/2);
mouse.sub(center); translate(width/2, height/2);
On the PVector lines I am getting the same expected an assignment error. I searched the solution via google and here but their codes seem formated differently than what I have here. Any ideas as to what might be going on here? I am totally new to coding.