Home | History | Annotate | Download | only in Geometry

Lines Matching refs:m_coeffs

48   VectorType m_coeffs;
55 explicit inline Scaling(const Scalar& s) { m_coeffs.setConstant(s); }
60 m_coeffs.x() = sx;
61 m_coeffs.y() = sy;
67 m_coeffs.x() = sx;
68 m_coeffs.y() = sy;
69 m_coeffs.z() = sz;
72 explicit inline Scaling(const VectorType& coeffs) : m_coeffs(coeffs) {}
74 const VectorType& coeffs() const { return m_coeffs; }
75 VectorType& coeffs() { return m_coeffs; }
111 m_coeffs = other.m_coeffs;
127 { m_coeffs = other.coeffs().template cast<Scalar>(); }
134 { return m_coeffs.isApprox(other.m_coeffs, prec); }
153 res.translation() = m_coeffs.cwise() * t.vector();
163 res.prescale(m_coeffs);