------------------------------------------------------------------------
| 105 | |
| 106 | //------------------------------------------------------------------------ |
| 107 | void vcgen_dash::add_vertex(double x, double y, unsigned cmd) |
| 108 | { |
| 109 | m_status = initial; |
| 110 | if(is_move_to(cmd)) |
| 111 | { |
| 112 | m_src_vertices.modify_last(vertex_dist(x, y)); |
| 113 | } |
| 114 | else |
| 115 | { |
| 116 | if(is_vertex(cmd)) |
| 117 | { |
| 118 | m_src_vertices.add(vertex_dist(x, y)); |
| 119 | } |
| 120 | else |
| 121 | { |
| 122 | m_closed = get_close_flag(cmd); |
| 123 | } |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | |
| 128 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected