From 54d55aeaf61869f2bcb8af79869bf3eb0274eed4 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 4 Jul 2012 18:25:07 +0200 Subject: fix bug #487: isometry * scaling was not compiling --- test/geo_transformations.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/geo_transformations.cpp') diff --git a/test/geo_transformations.cpp b/test/geo_transformations.cpp index e9f05cfb6..ad3e02c8e 100644 --- a/test/geo_transformations.cpp +++ b/test/geo_transformations.cpp @@ -415,6 +415,9 @@ template void transformations() Rotation2D r2d1d = r2d1.template cast(); VERIFY_IS_APPROX(r2d1d.template cast(),r2d1); + t20 = Translation2(v20) * (Rotation2D(s0) * Scaling(s0)); + t21 = Translation2(v20) * Rotation2D(s0) * Scaling(s0); + VERIFY_IS_APPROX(t20,t21); } template void transform_alignment() -- cgit v1.2.3