------------------------------------------------------------------------
| 86 | |
| 87 | //------------------------------------------------------------------------ |
| 88 | void trans_double_path::line_to2(double x, double y) |
| 89 | { |
| 90 | if(m_status2 == making_path) |
| 91 | { |
| 92 | m_src_vertices2.add(vertex_dist(x, y)); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | |
| 97 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected