sub2 static method

PVector? sub2(
  1. PVector v1,
  2. PVector v2
)

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);
}