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

Method add_point

dep/agg/src/agg_bspline.cpp:73–81  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

71
72 //------------------------------------------------------------------------
73 void bspline::add_point(double x, double y)
74 {
75 if(m_num < m_max)
76 {
77 m_x[m_num] = x;
78 m_y[m_num] = y;
79 ++m_num;
80 }
81 }
82
83
84 //------------------------------------------------------------------------

Callers 1

rewindMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected