| 17 | namespace sf |
| 18 | { |
| 19 | void setStreamPrecision(std::ostream& os, int maxDigits10) |
| 20 | { |
| 21 | os << std::fixed << std::setprecision(maxDigits10); |
| 22 | } |
| 23 | |
| 24 | std::ostream& operator<<(std::ostream& os, const Angle& angle) |
| 25 | { |
no outgoing calls
no test coverage detected