operator - method

PositionUnit operator -(
  1. PositionUnit other
)

Subtracts one position unit from another.

Implementation

PositionUnit operator -(PositionUnit other) {
  return _CalculatedPosition(
    this,
    other,
    calculationSubtract,
  );
}