| 163 | /// \related RoundPoint2D |
| 164 | |
| 165 | inline RoundPoint2D operator /(const RoundPoint2D& a, float n) |
| 166 | { |
| 167 | n = 1.0F / n; |
| 168 | return (RoundPoint2D(a.x * n, a.y * n, a.z * n, a.w * n)); |
| 169 | } |
| 170 | |
| 171 | /// \brief Returns a boolean value indicating whether the two 2D round points $a$ and $b$ are equal. |
| 172 | /// \related RoundPoint2D |
nothing calls this directly
no test coverage detected