Home | History | Annotate | Download | only in Geometry

Lines Matching refs:m_coeffs

51   inline explicit Hyperplane(int _dim) : m_coeffs(_dim+1) {}
57 : m_coeffs(n.size()+1)
68 : m_coeffs(n.size()+1)
111 inline int dim() const { return int(AmbientDimAtCompileTime)==Dynamic ? m_coeffs.size()-1 : int(AmbientDimAtCompileTime); }
116 m_coeffs /= normal().norm();
136 inline const NormalReturnType normal() const { return NormalReturnType(*const_cast<Coefficients*>(&m_coeffs),0,0,dim(),1); }
141 inline NormalReturnType normal() { return NormalReturnType(m_coeffs,0,0,dim(),1); }
146 inline const Scalar& offset() const { return m_coeffs.coeff(dim()); }
150 inline Scalar& offset() { return m_coeffs(dim()); }
155 inline const Coefficients& coeffs() const { return m_coeffs; }
160 inline Coefficients& coeffs() { return m_coeffs; }
240 { m_coeffs = other.coeffs().template cast<Scalar>(); }
247 { return m_coeffs.isApprox(other.m_coeffs, prec); }
251 Coefficients m_coeffs;