operator / method

PositionUnit operator /(
  1. PositionUnit other
)

Divides one position unit by another.

Implementation

PositionUnit operator /(PositionUnit other) {
  return _CalculatedPosition(
    this,
    other,
    calculationDivide,
  );
}