Searched refs:m_smooth_value (Results 1 - 2 of 2) sorted by relevance

/haiku/headers/libs/agg/
H A Dagg_vcgen_smooth_poly1.h52 void smooth_value(double v) { m_smooth_value = v * 0.5; }
53 double smooth_value() const { return m_smooth_value * 2.0; }
73 double m_smooth_value; member in class:agg::vcgen_smooth_poly1
/haiku/src/libs/agg/src/
H A Dagg_vcgen_smooth_poly1.cpp28 m_smooth_value(0.5),
94 m_ctrl1_x = v1.x + m_smooth_value * (v2.x - xm1);
95 m_ctrl1_y = v1.y + m_smooth_value * (v2.y - ym1);
96 m_ctrl2_x = v2.x + m_smooth_value * (v1.x - xm2);
97 m_ctrl2_y = v2.y + m_smooth_value * (v1.y - ym2);

Completed in 52 milliseconds