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

Method curve4

renderers/agg/include/agg_path_storage.h:1052–1059  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1050 //------------------------------------------------------------------------
1051 template<class VC>
1052 void path_base<VC>::curve4(double x_ctrl1, double y_ctrl1,
1053 double x_ctrl2, double y_ctrl2,
1054 double x_to, double y_to)
1055 {
1056 m_vertices.add_vertex(x_ctrl1, y_ctrl1, path_cmd_curve4);
1057 m_vertices.add_vertex(x_ctrl2, y_ctrl2, path_cmd_curve4);
1058 m_vertices.add_vertex(x_to, y_to, path_cmd_curve4);
1059 }
1060
1061 //------------------------------------------------------------------------
1062 template<class VC>

Callers

nothing calls this directly

Calls 4

is_vertexFunction · 0.85
is_curveFunction · 0.85
curve4Class · 0.85
add_vertexMethod · 0.45

Tested by

no test coverage detected