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

/haiku/headers/libs/agg/
H A Dagg_gamma_functions.h55 gamma_threshold() : m_threshold(0.5) {}
56 gamma_threshold(double t) : m_threshold(t) {}
58 void threshold(double t) { m_threshold = t; }
59 double threshold() const { return m_threshold; }
63 return (x < m_threshold) ? 0.0 : 1.0;
67 double m_threshold; member in class:agg::gamma_threshold

Completed in 71 milliseconds