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

Method curve3

renderers/agg/src/agg_svg_path_renderer.cpp:114–123  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

112
113 //------------------------------------------------------------------------
114 void path_renderer::curve3(double x1, double y1, // Q, q
115 double x, double y, bool rel)
116 {
117 if(rel)
118 {
119 m_storage.rel_to_abs(&x1, &y1);
120 m_storage.rel_to_abs(&x, &y);
121 }
122 m_storage.curve3(x1, y1, x, y);
123 }
124
125 //------------------------------------------------------------------------
126 void path_renderer::curve3(double x, double y, bool rel) // T, t

Callers 1

decompose_ft_outlineFunction · 0.45

Calls 2

rel_to_absMethod · 0.80
curve3_relMethod · 0.80

Tested by

no test coverage detected