------------------------------------------------------------------------
| 61 | |
| 62 | //------------------------------------------------------------------------ |
| 63 | void trans_double_path::line_to1(double x, double y) |
| 64 | { |
| 65 | if(m_status1 == making_path) |
| 66 | { |
| 67 | m_src_vertices1.add(vertex_dist(x, y)); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | |
| 72 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected