------------------------------------------------------------------------
| 127 | |
| 128 | //------------------------------------------------------------------------ |
| 129 | void vcgen_dash::rewind(unsigned) |
| 130 | { |
| 131 | if(m_status == initial) |
| 132 | { |
| 133 | m_src_vertices.close(m_closed != 0); |
| 134 | shorten_path(m_src_vertices, m_shorten, m_closed); |
| 135 | } |
| 136 | m_status = ready; |
| 137 | m_src_vertex = 0; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected