sub2 static method
Subtract one vector from another @param v1 the x, y, and z components of a PVector object @param v2 the x, y, and z components of a PVector object
Implementation
static PVector? sub2(PVector v1, PVector v2) {
return sub3(v1, v2, null);
}