16 #ifndef AGG_CONV_UNCLOSE_POLYGON_INCLUDED 17 #define AGG_CONV_UNCLOSE_POLYGON_INCLUDED 19 #include "agg_basics.h" 28 void attach(VertexSource& source) { m_source = &source; }
30 void rewind(
unsigned path_id)
32 m_source->rewind(path_id);
35 unsigned vertex(
double* x,
double* y)
37 unsigned cmd = m_source->vertex(x, y);
38 if(is_end_poly(cmd)) cmd &= ~path_flags_close;
47 VertexSource* m_source;