MCPcopy Create free account
hub / github.com/MapServer/MapServer / concat_path

Method concat_path

renderers/agg/include/agg_path_storage.h:721–730  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

719 //--------------------------------------------------------------------
720 template<class VertexSource>
721 void concat_path(VertexSource& vs, unsigned path_id = 0)
722 {
723 double x, y;
724 unsigned cmd;
725 vs.rewind(path_id);
726 while(!is_stop(cmd = vs.vertex(&x, &y)))
727 {
728 m_vertices.add_vertex(x, y, cmd);
729 }
730 }
731
732 //--------------------------------------------------------------------
733 // Join path. The path is joined with the existing one, that is,

Callers 3

agg2RenderGlyphsFunction · 0.80
agg2RenderEllipseSymbolFunction · 0.80
agg2RenderTruetypeSymbolFunction · 0.80

Calls 4

is_stopFunction · 0.85
rewindMethod · 0.45
vertexMethod · 0.45
add_vertexMethod · 0.45

Tested by

no test coverage detected