------------------------------------------------------------------------
| 53 | |
| 54 | //------------------------------------------------------------------------ |
| 55 | void trans_single_path::line_to(double x, double y) |
| 56 | { |
| 57 | if(m_status == making_path) |
| 58 | { |
| 59 | m_src_vertices.add(vertex_dist(x, y)); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | |
| 64 | //------------------------------------------------------------------------ |