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

Method arc

dep/agg/src/agg2d.cpp:829–836  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

827
828//------------------------------------------------------------------------
829void Agg2D::arc(double cx, double cy, double rx, double ry, double start, double sweep)
830{
831 m_path.remove_all();
832 agg::bezier_arc arc(cx, cy, rx, ry, start, sweep);
833 //m_path.add_path(arc, 0, false);
834 m_path.concat_path(arc,0); // JME
835 drawPath(StrokeOnly);
836}
837
838
839//------------------------------------------------------------------------

Callers 1

visualiseSectorsToFileFunction · 0.45

Calls 2

concat_pathMethod · 0.80
remove_allMethod · 0.45

Tested by

no test coverage detected