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

Method curve3_rel

renderers/agg/include/agg_path_storage.h:1008–1015  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1006 //------------------------------------------------------------------------
1007 template<class VC>
1008 void path_base<VC>::curve3_rel(double dx_ctrl, double dy_ctrl,
1009 double dx_to, double dy_to)
1010 {
1011 rel_to_abs(&dx_ctrl, &dy_ctrl);
1012 rel_to_abs(&dx_to, &dy_to);
1013 m_vertices.add_vertex(dx_ctrl, dy_ctrl, path_cmd_curve3);
1014 m_vertices.add_vertex(dx_to, dy_to, path_cmd_curve3);
1015 }
1016
1017 //------------------------------------------------------------------------
1018 template<class VC>

Callers 1

curve3Method · 0.80

Calls 2

curve3Class · 0.85
add_vertexMethod · 0.45

Tested by

no test coverage detected