Searched refs:m_sup (Results 1 – 1 of 1) sorted by relevance
9 CwiseClampOp(const Scalar& inf, const Scalar& sup) : m_inf(inf), m_sup(sup) {} in CwiseClampOp()10 const Scalar operator()(const Scalar& x) const { return x<m_inf ? m_inf : (x>m_sup ? m_sup : x); } in operator ()()11 Scalar m_inf, m_sup; member