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

Method curve

dep/agg/src/agg2d.cpp:862–868  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

860
861//------------------------------------------------------------------------
862void Agg2D::curve(double x1, double y1, double x2, double y2, double x3, double y3)
863{
864 m_path.remove_all();
865 m_path.move_to(x1, y1);
866 m_path.curve3(x2, y2, x3, y3);
867 drawPath(StrokeOnly);
868}
869
870
871//------------------------------------------------------------------------

Callers

nothing calls this directly

Calls 4

remove_allMethod · 0.45
move_toMethod · 0.45
curve3Method · 0.45
curve4Method · 0.45

Tested by

no test coverage detected