Skip to content
Snippets Groups Projects
Commit 9e775380 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Transform3f returns an Eigen expression

parent db477a36
No related branches found
No related tags found
No related merge requests found
......@@ -254,6 +254,14 @@ static inline std::ostream& operator << (std::ostream& o, const Quaternion3f& q)
/// @brief Simple transform class used locally by InterpMotion
class Transform3f
{
template<typename Derived> struct transform_return_type {
typedef Eigen::CwiseBinaryOp <
Eigen::internal::scalar_sum_op <FCL_REAL>,
const typename Quaternion3f::transform_return_type<Derived>::Type,
const Vec3f >
Type;
};
boost::mutex lock_;
/// @brief Whether matrix cache is set
......@@ -390,7 +398,7 @@ public:
/// @brief transform a given vector by the transform
template <typename Derived>
inline Vec3f transform(const Eigen::MatrixBase<Derived>& v) const
inline typename transform_return_type<Derived>::Type transform(const Eigen::MatrixBase<Derived>& v) const
{
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(Derived, 3);
return q.transform(v) + T;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment