Lines Matching full:linear
2 // for linear algebra. Eigen itself is part of the KDE project.
39 /** corresponding linear transformation matrix type */
82 /** Concatenates a translation and a linear transformation */
83 inline TransformType operator* (const LinearMatrixType& linear) const;
89 /** Concatenates a linear transformation and a translation */
91 friend inline TransformType operator* (const LinearMatrixType& linear, const Translation& t)
95 res.linear() = linear;
96 res.translation() = linear * t.m_coeffs;
156 res.linear().diagonal() = other.coeffs();
164 Translation<Scalar,Dim>::operator* (const LinearMatrixType& linear) const
168 res.linear() = linear;