Get circumference of circle
| 731 | |
| 732 | // Get circumference of circle |
| 733 | inline constexpr T perimeter() const |
| 734 | { |
| 735 | return T(2.0 * pi) * radius; |
| 736 | } |
| 737 | |
| 738 | // Get circumference of circle |
| 739 | inline constexpr T circumference() const |
nothing calls this directly
no outgoing calls
no test coverage detected