• Home
  • Raw
  • Download

Lines Matching refs:Translation

30 class Translation
54 EIGEN_DEVICE_FUNC Translation() {} in Translation() function
56 EIGEN_DEVICE_FUNC inline Translation(const Scalar& sx, const Scalar& sy) in Translation() function
63 EIGEN_DEVICE_FUNC inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz) in Translation() function
71 EIGEN_DEVICE_FUNC explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {} in Translation() function
94 EIGEN_DEVICE_FUNC inline Translation operator* (const Translation& other) const
95 { return Translation(m_coeffs + other.m_coeffs); }
112 …C inline AffineTransformType operator*(const EigenBase<OtherDerived>& linear, const Translation& t)
139 Translation inverse() const { return Translation(-m_coeffs); } in inverse()
141 Translation& operator=(const Translation& other)
147 static const Translation Identity() { return Translation(VectorType::Zero()); } in Identity()
155 …EIGEN_DEVICE_FUNC inline typename internal::cast_return_type<Translation,Translation<NewScalarType… in cast()
156 …{ return typename internal::cast_return_type<Translation,Translation<NewScalarType,Dim> >::type(*t… in cast()
160 EIGEN_DEVICE_FUNC inline explicit Translation(const Translation<OtherScalarType,Dim>& other) in Translation() function
167 …EIGEN_DEVICE_FUNC bool isApprox(const Translation& other, const typename NumTraits<Scalar>::Real& …
174 typedef Translation<float, 2> Translation2f;
175 typedef Translation<double,2> Translation2d;
176 typedef Translation<float, 3> Translation3f;
177 typedef Translation<double,3> Translation3d;
181 EIGEN_DEVICE_FUNC inline typename Translation<Scalar,Dim>::AffineTransformType
182 Translation<Scalar,Dim>::operator* (const UniformScaling<Scalar>& other) const
194 EIGEN_DEVICE_FUNC inline typename Translation<Scalar,Dim>::AffineTransformType
195 Translation<Scalar,Dim>::operator* (const EigenBase<OtherDerived>& linear) const