------------------------------------------------------------------------
| 71 | |
| 72 | //------------------------------------------------------------------------ |
| 73 | void trans_double_path::move_to2(double x, double y) |
| 74 | { |
| 75 | if(m_status2 == initial) |
| 76 | { |
| 77 | m_src_vertices2.modify_last(vertex_dist(x, y)); |
| 78 | m_status2 = making_path; |
| 79 | } |
| 80 | else |
| 81 | { |
| 82 | line_to2(x, y); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | |
| 87 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected