------------------------------------------------------------------------
| 68 | |
| 69 | //------------------------------------------------------------------------ |
| 70 | void vcgen_stroke::rewind(unsigned) |
| 71 | { |
| 72 | if(m_status == initial) |
| 73 | { |
| 74 | m_src_vertices.close(m_closed != 0); |
| 75 | shorten_path(m_src_vertices, m_shorten, m_closed); |
| 76 | if(m_src_vertices.size() < 3) m_closed = 0; |
| 77 | } |
| 78 | m_status = ready; |
| 79 | m_src_vertex = 0; |
| 80 | m_out_vertex = 0; |
| 81 | } |
| 82 | |
| 83 | |
| 84 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected