The only minor “issue” with PVectors is that you cannot use
PVector pos = 1,5,-4; //this will not work
//you have to use:
PVector pos = new PVector(1,5,-4);
The only minor “issue” with PVectors is that you cannot use
PVector pos = 1,5,-4; //this will not work
//you have to use:
PVector pos = new PVector(1,5,-4);