Home | History | Annotate | Download | only in Geometry

Lines Matching refs:m_coeffs

57    : m_coeffs(other.coeffs())
62 inline explicit Hyperplane(Index _dim) : m_coeffs(_dim+1) {}
68 : m_coeffs(n.size()+1)
79 : m_coeffs(n.size()+1)
122 inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_coeffs.size()-1 : Index(AmbientDimAtCompileTime); }
127 m_coeffs /= normal().norm();
147 inline ConstNormalReturnType normal() const { return ConstNormalReturnType(m_coeffs,0,0,dim(),1); }
152 inline NormalReturnType normal() { return NormalReturnType(m_coeffs,0,0,dim(),1); }
157 inline const Scalar& offset() const { return m_coeffs.coeff(dim()); }
161 inline Scalar& offset() { return m_coeffs(dim()); }
166 inline const Coefficients& coeffs() const { return m_coeffs; }
171 inline Coefficients& coeffs() { return m_coeffs; }
252 { m_coeffs = other.coeffs().template cast<Scalar>(); }
260 { return m_coeffs.isApprox(other.m_coeffs, prec); }
264 Coefficients m_coeffs;