From 955e0962774188847c8f2883f7006efa9723571d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 27 Jan 2011 17:17:06 +0100 Subject: add an Options template parameter to Hyperplane and ParametrizedLine --- test/geo_transformations.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/geo_transformations.cpp') diff --git a/test/geo_transformations.cpp b/test/geo_transformations.cpp index 317ed9a31..13305ddc8 100644 --- a/test/geo_transformations.cpp +++ b/test/geo_transformations.cpp @@ -429,17 +429,17 @@ template void transformations() template void transform_alignment() { - typedef Transform Projective4a; - typedef Transform Projective4u; + typedef Transform Projective3a; + typedef Transform Projective3u; EIGEN_ALIGN16 Scalar array1[16]; EIGEN_ALIGN16 Scalar array2[16]; EIGEN_ALIGN16 Scalar array3[16+1]; Scalar* array3u = array3+1; - Projective4a *p1 = ::new(reinterpret_cast(array1)) Projective4a; - Projective4u *p2 = ::new(reinterpret_cast(array2)) Projective4u; - Projective4u *p3 = ::new(reinterpret_cast(array3u)) Projective4u; + Projective3a *p1 = ::new(reinterpret_cast(array1)) Projective3a; + Projective3u *p2 = ::new(reinterpret_cast(array2)) Projective3u; + Projective3u *p3 = ::new(reinterpret_cast(array3u)) Projective3u; p1->matrix().setRandom(); *p2 = *p1; -- cgit v1.2.3