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

Method curve4

renderers/agg/src/agg_svg_path_renderer.cpp:139–150  ·  view source on GitHub ↗

------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

137
138 //------------------------------------------------------------------------
139 void path_renderer::curve4(double x1, double y1, // C, c
140 double x2, double y2,
141 double x, double y, bool rel)
142 {
143 if(rel)
144 {
145 m_storage.rel_to_abs(&x1, &y1);
146 m_storage.rel_to_abs(&x2, &y2);
147 m_storage.rel_to_abs(&x, &y);
148 }
149 m_storage.curve4(x1, y1, x2, y2, x, y);
150 }
151
152 //------------------------------------------------------------------------
153 void path_renderer::curve4(double x2, double y2, // S, s

Callers 1

decompose_ft_outlineFunction · 0.45

Calls 2

rel_to_absMethod · 0.80
curve4_relMethod · 0.80

Tested by

no test coverage detected