| 540 | |
| 541 | template<typename PointT> |
| 542 | inline |
| 543 | double PatchWork<PointT>::xy2radius(const double &x, const double &y) { |
| 544 | return sqrt(pow(x, 2) + pow(y, 2)); |
| 545 | } |
| 546 | |
| 547 | template<typename PointT> |
| 548 | inline |
nothing calls this directly
no outgoing calls
no test coverage detected