------------------------------------------------------------------------
| 46 | |
| 47 | //------------------------------------------------------------------------ |
| 48 | void trans_double_path::move_to1(double x, double y) |
| 49 | { |
| 50 | if(m_status1 == initial) |
| 51 | { |
| 52 | m_src_vertices1.modify_last(vertex_dist(x, y)); |
| 53 | m_status1 = making_path; |
| 54 | } |
| 55 | else |
| 56 | { |
| 57 | line_to1(x, y); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | |
| 62 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected