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