MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / curve4

Method curve4

dep/agg/include/agg_path_storage.h:1108–1118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1106 //------------------------------------------------------------------------
1107 template <class VC>
1108 void path_base<VC>::curve4(double x_ctrl1,
1109 double y_ctrl1,
1110 double x_ctrl2,
1111 double y_ctrl2,
1112 double x_to,
1113 double y_to)
1114 {
1115 m_vertices.add_vertex(x_ctrl1, y_ctrl1, path_cmd_curve4);
1116 m_vertices.add_vertex(x_ctrl2, y_ctrl2, path_cmd_curve4);
1117 m_vertices.add_vertex(x_to, y_to, path_cmd_curve4);
1118 }
1119
1120 //------------------------------------------------------------------------
1121 template <class VC>

Callers 2

curveMethod · 0.45
cubicCurveToMethod · 0.45

Calls 4

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

Tested by

no test coverage detected