sub method

void sub(
  1. PVector other
)

Implementation

void sub(PVector other) {
  x -= other.x;
  y -= other.y;
}