aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/geo_transformations.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-02-22 08:14:38 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-02-22 08:14:38 -0500
commit39d3bc2394d503bd3ca2a53adeae6fa965f4c5a6 (patch)
tree4b84d6d66e741a0e9dedd8ffca1343315c122747 /test/geo_transformations.cpp
parent659c97ee4961727b28e2a5c072f670c29ebf928e (diff)
fix bug #190: directly pass Transform Options to Matrix, allowing to use RowMajor. Fix issues in Transform with non-default Options.
Diffstat (limited to 'test/geo_transformations.cpp')
-rw-r--r--test/geo_transformations.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/geo_transformations.cpp b/test/geo_transformations.cpp
index 005a02f71..44ce1f501 100644
--- a/test/geo_transformations.cpp
+++ b/test/geo_transformations.cpp
@@ -459,5 +459,11 @@ void test_geo_transformations()
CALL_SUBTEST_3(( transformations<double,Projective,AutoAlign>() ));
CALL_SUBTEST_3(( transformations<double,Projective,DontAlign>() ));
CALL_SUBTEST_3(( transform_alignment<double>() ));
+
+ CALL_SUBTEST_4(( transformations<double,Affine,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_4(( transformations<double,AffineCompact,RowMajor|AutoAlign>() ));
+
+ CALL_SUBTEST_5(( transformations<double,Projective,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_5(( transformations<double,Projective,RowMajor|DontAlign>() ));
}
}