16 #ifndef AGG_CONV_CONCAT_INCLUDED 17 #define AGG_CONV_CONCAT_INCLUDED 19 #include "agg_basics.h" 30 m_source1(&source1), m_source2(&source2), m_status(2) {}
31 void attach1(VS1& source) { m_source1 = &source; }
32 void attach2(VS2& source) { m_source2 = &source; }
35 void rewind(
unsigned path_id)
37 m_source1->rewind(path_id);
42 unsigned vertex(
double* x,
double* y)
47 cmd = m_source1->vertex(x, y);
48 if(!is_stop(cmd))
return cmd;
53 cmd = m_source2->vertex(x, y);
54 if(!is_stop(cmd))
return cmd;