Hi,
Thanks for the answer, but now my problem is the next line
PVector perp1 = perp0.cross( new PVector( 0, 1, 0 ) ).normalize();
If I try
PVector perp1 = PVector.cross( perp0 , new PVector( 0, 1, 0 )).normalize();
Is still giving me an error "Cannot make a static reference to the non-static method cross(PVector, PVector) from the type PVector"
The strange thing is that in reference the examples looks exactly the same way of the code I have.
Still trying to make it work....