| 909 | //------------------------------------------------------------------------ |
| 910 | template <class VC> |
| 911 | inline void path_base<VC>::rel_to_abs(double* x, double* y) const |
| 912 | { |
| 913 | if (m_vertices.total_vertices()) |
| 914 | { |
| 915 | double x2; |
| 916 | double y2; |
| 917 | if (is_vertex(m_vertices.last_vertex(&x2, &y2))) |
| 918 | { |
| 919 | *x += x2; |
| 920 | *y += y2; |
| 921 | } |
| 922 | } |
| 923 | } |
| 924 | |
| 925 | //------------------------------------------------------------------------ |
| 926 | template <class VC> |
nothing calls this directly
no test coverage detected