Get area of circle
| 725 | |
| 726 | // Get area of circle |
| 727 | inline constexpr T area() const |
| 728 | { |
| 729 | return T(pi) * radius * radius; |
| 730 | } |
| 731 | |
| 732 | // Get circumference of circle |
| 733 | inline constexpr T perimeter() const |
nothing calls this directly
no outgoing calls
no test coverage detected