| 99 | } |
| 100 | |
| 101 | UnitVector UnitVector::operator/(const UnitVector& div) const |
| 102 | { |
| 103 | const UnitVector pVec = div.to(unit); |
| 104 | return UnitVector(x / pVec.x, y / pVec.y, unit); |
| 105 | } |
| 106 | |
| 107 | UnitVector& UnitVector::operator/=(const UnitVector& div) |
| 108 | { |
nothing calls this directly
no test coverage detected