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

Method bezier

renderers/agg/src/agg_curves.cpp:230–237  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

228
229 //------------------------------------------------------------------------
230 void curve3_div::bezier(double x1, double y1,
231 double x2, double y2,
232 double x3, double y3)
233 {
234 m_points.add(point_d(x1, y1));
235 recursive_bezier(x1, y1, x2, y2, x3, y3, 0);
236 m_points.add(point_d(x3, y3));
237 }
238
239
240

Callers

nothing calls this directly

Calls 1

addMethod · 0.45

Tested by

no test coverage detected