| 334 | |
| 335 | template <class PointT> |
| 336 | void JunctionsToPoints(std::vector<PointT> const & junctions, std::vector<m2::PointD> & points) |
| 337 | { |
| 338 | points.resize(junctions.size()); |
| 339 | for (size_t i = 0; i < junctions.size(); ++i) |
| 340 | points[i] = junctions[i].GetPoint(); |
| 341 | } |
| 342 | |
| 343 | template <class PointT> |
| 344 | void JunctionsToAltitudes(std::vector<PointT> const & junctions, geometry::Altitudes & altitudes) |
no test coverage detected