operator + method

PVector operator +(
  1. PVector other
)

Implementation

PVector operator +(PVector other) {
  return add2(
    this,
    other,
  );
  // return Family([this, other]);
}