aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/geo_transformations.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-02-22 14:26:32 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-02-22 14:26:32 +0100
commit68631e28d49f363887a23f33baeb7b5425f0ccc4 (patch)
tree797cef9a210977360b48e4c787b54915fc3244dc /test/geo_transformations.cpp
parent39d3bc2394d503bd3ca2a53adeae6fa965f4c5a6 (diff)
also test non_projective_only with row major transformations
Diffstat (limited to 'test/geo_transformations.cpp')
-rw-r--r--test/geo_transformations.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/geo_transformations.cpp b/test/geo_transformations.cpp
index 44ce1f501..67396498d 100644
--- a/test/geo_transformations.cpp
+++ b/test/geo_transformations.cpp
@@ -459,11 +459,14 @@ 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<float,Affine,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_4(( non_projective_only<float,Affine,RowMajor>() ));
+
+ CALL_SUBTEST_5(( transformations<double,AffineCompact,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_5(( non_projective_only<double,AffineCompact,RowMajor>() ));
- 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>() ));
+ CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|DontAlign>() ));
}
}