Lines Matching refs:other
76 inline Translation operator* (const Translation& other) const
77 { return Translation(m_coeffs + other.m_coeffs); }
80 inline TransformType operator* (const ScalingType& other) const;
106 inline VectorType operator* (const VectorType& other) const
107 { return m_coeffs + other; }
112 Translation& operator=(const Translation& other)
114 m_coeffs = other.m_coeffs;
129 inline explicit Translation(const Translation<OtherScalarType,Dim>& other)
130 { m_coeffs = other.vector().template cast<Scalar>(); }
132 /** \returns \c true if \c *this is approximately equal to \a other, within the precision
136 bool isApprox(const Translation& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
137 { return m_coeffs.isApprox(other.m_coeffs, prec); }
152 Translation<Scalar,Dim>::operator* (const ScalingType& other) const
156 res.linear().diagonal() = other.coeffs();