operator - method

PVector? operator -(
  1. PVector other
)

Implementation

PVector? operator -(PVector other) {
  return sub2(
    this,
    other,
  );
  // return Family([this, other]);
}