| 173 | /// \related RoundPoint3D |
| 174 | |
| 175 | inline RoundPoint3D operator /(const RoundPoint3D& a, float n) |
| 176 | { |
| 177 | n = 1.0F / n; |
| 178 | return (RoundPoint3D(a.x * n, a.y * n, a.z * n, a.w * n, a.u * n)); |
| 179 | } |
| 180 | |
| 181 | /// \brief Returns a boolean value indicating whether the two 3D round points $a$ and $b$ are equal. |
| 182 | /// \related RoundPoint3D |
nothing calls this directly
no test coverage detected