mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
fix bug #487: isometry * scaling was not compiling
This commit is contained in:
@@ -415,6 +415,9 @@ template<typename Scalar, int Mode, int Options> void transformations()
|
||||
Rotation2D<double> r2d1d = r2d1.template cast<double>();
|
||||
VERIFY_IS_APPROX(r2d1d.template cast<Scalar>(),r2d1);
|
||||
|
||||
t20 = Translation2(v20) * (Rotation2D<Scalar>(s0) * Scaling(s0));
|
||||
t21 = Translation2(v20) * Rotation2D<Scalar>(s0) * Scaling(s0);
|
||||
VERIFY_IS_APPROX(t20,t21);
|
||||
}
|
||||
|
||||
template<typename Scalar> void transform_alignment()
|
||||
|
||||
Reference in New Issue
Block a user