2008-06-03 15:32:12 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra. Eigen itself is part of the KDE project.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr>
|
|
|
|
//
|
|
|
|
// Eigen is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Alternatively, you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License and a copy of the GNU General Public License along with
|
|
|
|
// Eigen. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include <Eigen/Geometry>
|
2008-06-16 01:22:41 +08:00
|
|
|
#include <Eigen/LU>
|
2008-08-30 23:22:45 +08:00
|
|
|
#include <Eigen/QR>
|
2008-06-03 15:32:12 +08:00
|
|
|
|
|
|
|
template<typename Scalar> void geometry(void)
|
|
|
|
{
|
|
|
|
/* this test covers the following files:
|
2008-06-15 16:33:44 +08:00
|
|
|
Cross.h Quaternion.h, Transform.cpp
|
2008-06-03 15:32:12 +08:00
|
|
|
*/
|
|
|
|
|
2008-06-16 01:22:41 +08:00
|
|
|
typedef Matrix<Scalar,2,2> Matrix2;
|
2008-06-03 15:32:12 +08:00
|
|
|
typedef Matrix<Scalar,3,3> Matrix3;
|
|
|
|
typedef Matrix<Scalar,4,4> Matrix4;
|
2008-06-16 01:22:41 +08:00
|
|
|
typedef Matrix<Scalar,2,1> Vector2;
|
2008-06-03 15:32:12 +08:00
|
|
|
typedef Matrix<Scalar,3,1> Vector3;
|
|
|
|
typedef Matrix<Scalar,4,1> Vector4;
|
2008-10-26 07:10:21 +08:00
|
|
|
typedef Quaternion<Scalar> Quaternionx;
|
|
|
|
typedef AngleAxis<Scalar> AngleAxisx;
|
2008-08-30 08:08:23 +08:00
|
|
|
typedef Transform<Scalar,2> Transform2;
|
|
|
|
typedef Transform<Scalar,3> Transform3;
|
|
|
|
typedef Scaling<Scalar,2> Scaling2;
|
|
|
|
typedef Scaling<Scalar,3> Scaling3;
|
|
|
|
typedef Translation<Scalar,2> Translation2;
|
|
|
|
typedef Translation<Scalar,3> Translation3;
|
2008-06-03 15:32:12 +08:00
|
|
|
|
2008-09-11 19:19:34 +08:00
|
|
|
Scalar largeEps = test_precision<Scalar>();
|
|
|
|
if (ei_is_same_type<Scalar,float>::ret)
|
|
|
|
largeEps = 1e-3f;
|
|
|
|
|
2008-10-26 07:10:21 +08:00
|
|
|
Quaternionx q1, q2;
|
2008-09-02 01:31:21 +08:00
|
|
|
Vector3 v0 = Vector3::Random(),
|
|
|
|
v1 = Vector3::Random(),
|
|
|
|
v2 = Vector3::Random();
|
|
|
|
Vector2 u0 = Vector2::Random();
|
2008-07-19 21:03:23 +08:00
|
|
|
Matrix3 matrot1;
|
2008-06-03 15:32:12 +08:00
|
|
|
|
2008-06-16 01:22:41 +08:00
|
|
|
Scalar a = ei_random<Scalar>(-M_PI, M_PI);
|
2008-06-03 21:43:29 +08:00
|
|
|
|
2008-07-22 18:54:42 +08:00
|
|
|
// cross product
|
|
|
|
VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(v2).dot(v1), Scalar(1));
|
|
|
|
Matrix3 m;
|
|
|
|
m << v0.normalized(),
|
|
|
|
(v0.cross(v1)).normalized(),
|
|
|
|
(v0.cross(v1).cross(v0)).normalized();
|
|
|
|
VERIFY(m.isUnitary());
|
|
|
|
|
2008-08-25 01:31:03 +08:00
|
|
|
// unitOrthogonal
|
|
|
|
VERIFY_IS_MUCH_SMALLER_THAN(u0.unitOrthogonal().dot(u0), Scalar(1));
|
|
|
|
VERIFY_IS_MUCH_SMALLER_THAN(v0.unitOrthogonal().dot(v0), Scalar(1));
|
|
|
|
VERIFY_IS_APPROX(u0.unitOrthogonal().norm(), Scalar(1));
|
|
|
|
VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), Scalar(1));
|
|
|
|
|
2008-07-22 18:54:42 +08:00
|
|
|
|
2008-10-26 07:10:21 +08:00
|
|
|
VERIFY_IS_APPROX(v0, AngleAxisx(a, v0.normalized()) * v0);
|
|
|
|
VERIFY_IS_APPROX(-v0, AngleAxisx(M_PI, v0.unitOrthogonal()) * v0);
|
2008-11-04 03:14:17 +08:00
|
|
|
VERIFY_IS_APPROX(ei_cos(a)*v0.squaredNorm(), v0.dot(AngleAxisx(a, v0.unitOrthogonal()) * v0));
|
2008-10-26 07:10:21 +08:00
|
|
|
m = AngleAxisx(a, v0.normalized()).toRotationMatrix().adjoint();
|
|
|
|
VERIFY_IS_APPROX(Matrix3::Identity(), m * AngleAxisx(a, v0.normalized()));
|
|
|
|
VERIFY_IS_APPROX(Matrix3::Identity(), AngleAxisx(a, v0.normalized()) * m);
|
2008-08-25 07:16:51 +08:00
|
|
|
|
2008-10-26 07:10:21 +08:00
|
|
|
q1 = AngleAxisx(a, v0.normalized());
|
|
|
|
q2 = AngleAxisx(a, v1.normalized());
|
2008-06-03 15:32:12 +08:00
|
|
|
|
2008-09-11 19:19:34 +08:00
|
|
|
// angular distance
|
2008-10-26 07:10:21 +08:00
|
|
|
Scalar refangle = ei_abs(AngleAxisx(q1.inverse()*q2).angle());
|
2008-09-11 19:19:34 +08:00
|
|
|
if (refangle>M_PI)
|
|
|
|
refangle = 2.*M_PI - refangle;
|
|
|
|
VERIFY(ei_isApprox(q1.angularDistance(q2), refangle, largeEps));
|
|
|
|
|
2008-06-03 21:43:29 +08:00
|
|
|
// rotation matrix conversion
|
2008-06-16 01:22:41 +08:00
|
|
|
VERIFY_IS_APPROX(q1 * v2, q1.toRotationMatrix() * v2);
|
|
|
|
VERIFY_IS_APPROX(q1 * q2 * v2,
|
|
|
|
q1.toRotationMatrix() * q2.toRotationMatrix() * v2);
|
2008-08-23 23:14:20 +08:00
|
|
|
VERIFY( !(q2 * q1 * v2).isApprox(
|
|
|
|
q1.toRotationMatrix() * q2.toRotationMatrix() * v2));
|
2008-06-21 23:01:49 +08:00
|
|
|
q2 = q1.toRotationMatrix();
|
2008-06-16 01:22:41 +08:00
|
|
|
VERIFY_IS_APPROX(q1*v1,q2*v1);
|
|
|
|
|
2008-10-26 07:10:21 +08:00
|
|
|
matrot1 = AngleAxisx(0.1, Vector3::UnitX())
|
|
|
|
* AngleAxisx(0.2, Vector3::UnitY())
|
|
|
|
* AngleAxisx(0.3, Vector3::UnitZ());
|
2008-07-19 21:03:23 +08:00
|
|
|
VERIFY_IS_APPROX(matrot1 * v1,
|
2008-10-26 07:10:21 +08:00
|
|
|
AngleAxisx(0.1, Vector3(1,0,0)).toRotationMatrix()
|
|
|
|
* (AngleAxisx(0.2, Vector3(0,1,0)).toRotationMatrix()
|
|
|
|
* (AngleAxisx(0.3, Vector3(0,0,1)).toRotationMatrix() * v1)));
|
2008-06-16 01:22:41 +08:00
|
|
|
|
|
|
|
// angle-axis conversion
|
2008-10-26 07:10:21 +08:00
|
|
|
AngleAxisx aa = q1;
|
|
|
|
VERIFY_IS_APPROX(q1 * v1, Quaternionx(aa) * v1);
|
|
|
|
VERIFY_IS_NOT_APPROX(q1 * v1, Quaternionx(AngleAxisx(aa.angle()*2,aa.axis())) * v1);
|
2008-06-16 01:22:41 +08:00
|
|
|
|
|
|
|
// from two vector creation
|
2008-06-21 23:01:49 +08:00
|
|
|
VERIFY_IS_APPROX(v2.normalized(),(q2.setFromTwoVectors(v1,v2)*v1).normalized());
|
|
|
|
VERIFY_IS_APPROX(v2.normalized(),(q2.setFromTwoVectors(v1,v2)*v1).normalized());
|
2008-06-16 01:22:41 +08:00
|
|
|
|
|
|
|
// inverse and conjugate
|
|
|
|
VERIFY_IS_APPROX(q1 * (q1.inverse() * v1), v1);
|
|
|
|
VERIFY_IS_APPROX(q1 * (q1.conjugate() * v1), v1);
|
2008-06-03 23:50:09 +08:00
|
|
|
|
2008-06-16 01:22:41 +08:00
|
|
|
// AngleAxis
|
2008-10-26 07:10:21 +08:00
|
|
|
VERIFY_IS_APPROX(AngleAxisx(a,v1.normalized()).toRotationMatrix(),
|
|
|
|
Quaternionx(AngleAxisx(a,v1.normalized())).toRotationMatrix());
|
2008-06-16 01:22:41 +08:00
|
|
|
|
2008-10-26 07:10:21 +08:00
|
|
|
AngleAxisx aa1;
|
2008-06-16 01:22:41 +08:00
|
|
|
m = q1.toRotationMatrix();
|
2008-06-21 23:01:49 +08:00
|
|
|
aa1 = m;
|
2008-10-26 07:10:21 +08:00
|
|
|
VERIFY_IS_APPROX(AngleAxisx(m).toRotationMatrix(),
|
|
|
|
Quaternionx(m).toRotationMatrix());
|
2008-06-16 01:22:41 +08:00
|
|
|
|
2008-06-15 16:33:44 +08:00
|
|
|
// Transform
|
|
|
|
// TODO complete the tests !
|
|
|
|
a = 0;
|
|
|
|
while (ei_abs(a)<0.1)
|
|
|
|
a = ei_random<Scalar>(-0.4*M_PI, 0.4*M_PI);
|
2008-10-26 07:10:21 +08:00
|
|
|
q1 = AngleAxisx(a, v0.normalized());
|
2008-06-15 16:33:44 +08:00
|
|
|
Transform3 t0, t1, t2;
|
|
|
|
t0.setIdentity();
|
2008-08-22 01:02:47 +08:00
|
|
|
t0.linear() = q1.toRotationMatrix();
|
2008-06-15 16:33:44 +08:00
|
|
|
t1.setIdentity();
|
2008-08-22 01:02:47 +08:00
|
|
|
t1.linear() = q1.toRotationMatrix();
|
2008-06-15 16:33:44 +08:00
|
|
|
|
2008-09-02 01:31:21 +08:00
|
|
|
v0 << 50, 2, 1;//= ei_random_matrix<Vector3>().cwiseProduct(Vector3(10,2,0.5));
|
2008-06-15 16:33:44 +08:00
|
|
|
t0.scale(v0);
|
|
|
|
t1.prescale(v0);
|
|
|
|
|
|
|
|
VERIFY_IS_APPROX( (t0 * Vector3(1,0,0)).norm(), v0.x());
|
2008-08-23 23:14:20 +08:00
|
|
|
VERIFY(!ei_isApprox((t1 * Vector3(1,0,0)).norm(), v0.x()));
|
2008-06-15 16:33:44 +08:00
|
|
|
|
|
|
|
t0.setIdentity();
|
|
|
|
t1.setIdentity();
|
|
|
|
v1 << 1, 2, 3;
|
2008-08-22 01:02:47 +08:00
|
|
|
t0.linear() = q1.toRotationMatrix();
|
2008-06-15 16:33:44 +08:00
|
|
|
t0.pretranslate(v0);
|
|
|
|
t0.scale(v1);
|
2008-08-22 01:02:47 +08:00
|
|
|
t1.linear() = q1.conjugate().toRotationMatrix();
|
2008-07-08 08:49:10 +08:00
|
|
|
t1.prescale(v1.cwise().inverse());
|
2008-06-15 16:33:44 +08:00
|
|
|
t1.translate(-v0);
|
|
|
|
|
2008-08-23 23:14:20 +08:00
|
|
|
VERIFY((t0.matrix() * t1.matrix()).isIdentity(test_precision<Scalar>()));
|
2008-06-15 19:54:18 +08:00
|
|
|
|
|
|
|
t1.fromPositionOrientationScale(v0, q1, v1);
|
|
|
|
VERIFY_IS_APPROX(t1.matrix(), t0.matrix());
|
2008-08-29 05:44:56 +08:00
|
|
|
VERIFY_IS_APPROX(t1*v1, t0*v1);
|
2008-06-16 01:22:41 +08:00
|
|
|
|
2008-08-31 07:10:46 +08:00
|
|
|
t0.setIdentity(); t0.scale(v0).rotate(q1.toRotationMatrix());
|
|
|
|
t1.setIdentity(); t1.scale(v0).rotate(q1);
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
2008-10-26 07:10:21 +08:00
|
|
|
t0.setIdentity(); t0.scale(v0).rotate(AngleAxisx(q1));
|
2008-08-31 07:10:46 +08:00
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
|
|
|
VERIFY_IS_APPROX(t0.scale(a).matrix(), t1.scale(Vector3::Constant(a)).matrix());
|
|
|
|
VERIFY_IS_APPROX(t0.prescale(a).matrix(), t1.prescale(Vector3::Constant(a)).matrix());
|
|
|
|
|
2008-06-16 01:22:41 +08:00
|
|
|
// 2D transformation
|
|
|
|
Transform2 t20, t21;
|
2008-09-02 01:31:21 +08:00
|
|
|
Vector2 v20 = Vector2::Random();
|
|
|
|
Vector2 v21 = Vector2::Random();
|
2008-08-23 23:14:20 +08:00
|
|
|
for (int k=0; k<2; ++k)
|
|
|
|
if (ei_abs(v21[k])<1e-3) v21[k] = 1e-3;
|
2008-06-16 01:22:41 +08:00
|
|
|
t21.setIdentity();
|
2008-08-22 01:02:47 +08:00
|
|
|
t21.linear() = Rotation2D<Scalar>(a).toRotationMatrix();
|
2008-06-16 01:22:41 +08:00
|
|
|
VERIFY_IS_APPROX(t20.fromPositionOrientationScale(v20,a,v21).matrix(),
|
|
|
|
t21.pretranslate(v20).scale(v21).matrix());
|
|
|
|
|
|
|
|
t21.setIdentity();
|
2008-08-22 01:02:47 +08:00
|
|
|
t21.linear() = Rotation2D<Scalar>(-a).toRotationMatrix();
|
2008-08-23 23:14:20 +08:00
|
|
|
VERIFY( (t20.fromPositionOrientationScale(v20,a,v21)
|
|
|
|
* (t21.prescale(v21.cwise().inverse()).translate(-v20))).isIdentity(test_precision<Scalar>()) );
|
2008-08-30 08:08:23 +08:00
|
|
|
|
|
|
|
// Transform - new API
|
|
|
|
// 3D
|
|
|
|
t0.setIdentity();
|
|
|
|
t0.rotate(q1).scale(v0).translate(v0);
|
|
|
|
// mat * scaling and mat * translation
|
|
|
|
t1 = (Matrix3(q1) * Scaling3(v0)) * Translation3(v0);
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
// mat * transformation and scaling * translation
|
|
|
|
t1 = Matrix3(q1) * (Scaling3(v0) * Translation3(v0));
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
|
|
|
t0.setIdentity();
|
|
|
|
t0.prerotate(q1).prescale(v0).pretranslate(v0);
|
|
|
|
// translation * scaling and transformation * mat
|
|
|
|
t1 = (Translation3(v0) * Scaling3(v0)) * Matrix3(q1);
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
// scaling * mat and translation * mat
|
|
|
|
t1 = Translation3(v0) * (Scaling3(v0) * Matrix3(q1));
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
2008-10-26 07:10:21 +08:00
|
|
|
|
2008-08-30 08:08:23 +08:00
|
|
|
t0.setIdentity();
|
|
|
|
t0.scale(v0).translate(v0).rotate(q1);
|
|
|
|
// translation * mat and scaling * transformation
|
|
|
|
t1 = Scaling3(v0) * (Translation3(v0) * Matrix3(q1));
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
// transformation * scaling
|
|
|
|
t0.scale(v0);
|
|
|
|
t1 = t1 * Scaling3(v0);
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
// transformation * translation
|
|
|
|
t0.translate(v0);
|
|
|
|
t1 = t1 * Translation3(v0);
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
2008-10-26 07:10:21 +08:00
|
|
|
// translation * transformation
|
2008-08-30 08:08:23 +08:00
|
|
|
t0.pretranslate(v0);
|
|
|
|
t1 = Translation3(v0) * t1;
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
2008-08-31 04:11:04 +08:00
|
|
|
// transform * quaternion
|
|
|
|
t0.rotate(q1);
|
|
|
|
t1 = t1 * q1;
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
|
|
|
// translation * quaternion
|
|
|
|
t0.translate(v1).rotate(q1);
|
|
|
|
t1 = t1 * (Translation3(v1) * q1);
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
|
|
|
// scaling * quaternion
|
|
|
|
t0.scale(v1).rotate(q1);
|
|
|
|
t1 = t1 * (Scaling3(v1) * q1);
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
|
|
|
// quaternion * transform
|
|
|
|
t0.prerotate(q1);
|
|
|
|
t1 = q1 * t1;
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
|
|
|
// quaternion * translation
|
|
|
|
t0.rotate(q1).translate(v1);
|
|
|
|
t1 = t1 * (q1 * Translation3(v1));
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
|
|
|
// quaternion * scaling
|
|
|
|
t0.rotate(q1).scale(v1);
|
|
|
|
t1 = t1 * (q1 * Scaling3(v1));
|
|
|
|
VERIFY_IS_APPROX(t0.matrix(), t1.matrix());
|
|
|
|
|
2008-08-30 08:08:23 +08:00
|
|
|
// translation * vector
|
|
|
|
t0.setIdentity();
|
|
|
|
t0.translate(v0);
|
|
|
|
VERIFY_IS_APPROX(t0 * v1, Translation3(v0) * v1);
|
|
|
|
|
|
|
|
// scaling * vector
|
|
|
|
t0.setIdentity();
|
|
|
|
t0.scale(v0);
|
|
|
|
VERIFY_IS_APPROX(t0 * v1, Scaling3(v0) * v1);
|
2008-08-30 20:42:06 +08:00
|
|
|
|
|
|
|
// test transform inversion
|
|
|
|
t0.setIdentity();
|
|
|
|
t0.translate(v0);
|
|
|
|
t0.linear().setRandom();
|
2008-09-02 01:14:34 +08:00
|
|
|
VERIFY_IS_APPROX(t0.inverse(Affine), t0.matrix().inverse());
|
2008-08-30 20:42:06 +08:00
|
|
|
t0.setIdentity();
|
|
|
|
t0.translate(v0).rotate(q1);
|
2008-09-02 01:14:34 +08:00
|
|
|
VERIFY_IS_APPROX(t0.inverse(Isometry), t0.matrix().inverse());
|
2008-08-30 23:22:45 +08:00
|
|
|
|
|
|
|
// test extract rotation
|
|
|
|
t0.setIdentity();
|
|
|
|
t0.translate(v0).rotate(q1).scale(v1);
|
2008-09-02 01:14:34 +08:00
|
|
|
VERIFY_IS_APPROX(t0.extractRotation(Affine) * v1, Matrix3(q1) * v1);
|
2008-10-26 07:10:21 +08:00
|
|
|
|
|
|
|
// test casting
|
|
|
|
Transform<float,3> t1f = t1.template cast<float>();
|
|
|
|
VERIFY_IS_APPROX(t1f.template cast<Scalar>(),t1);
|
|
|
|
Transform<double,3> t1d = t1.template cast<double>();
|
|
|
|
VERIFY_IS_APPROX(t1d.template cast<Scalar>(),t1);
|
|
|
|
|
|
|
|
Translation3 tr1(v0);
|
|
|
|
Translation<float,3> tr1f = tr1.template cast<float>();
|
|
|
|
VERIFY_IS_APPROX(tr1f.template cast<Scalar>(),tr1);
|
|
|
|
Translation<double,3> tr1d = tr1.template cast<double>();
|
|
|
|
VERIFY_IS_APPROX(tr1d.template cast<Scalar>(),tr1);
|
|
|
|
|
|
|
|
Scaling3 sc1(v0);
|
|
|
|
Scaling<float,3> sc1f = sc1.template cast<float>();
|
|
|
|
VERIFY_IS_APPROX(sc1f.template cast<Scalar>(),sc1);
|
|
|
|
Scaling<double,3> sc1d = sc1.template cast<double>();
|
|
|
|
VERIFY_IS_APPROX(sc1d.template cast<Scalar>(),sc1);
|
|
|
|
|
|
|
|
Quaternion<float> q1f = q1.template cast<float>();
|
|
|
|
VERIFY_IS_APPROX(q1f.template cast<Scalar>(),q1);
|
|
|
|
Quaternion<double> q1d = q1.template cast<double>();
|
|
|
|
VERIFY_IS_APPROX(q1d.template cast<Scalar>(),q1);
|
|
|
|
|
|
|
|
AngleAxis<float> aa1f = aa1.template cast<float>();
|
|
|
|
VERIFY_IS_APPROX(aa1f.template cast<Scalar>(),aa1);
|
|
|
|
AngleAxis<double> aa1d = aa1.template cast<double>();
|
|
|
|
VERIFY_IS_APPROX(aa1d.template cast<Scalar>(),aa1);
|
|
|
|
|
|
|
|
Rotation2D<Scalar> r2d1(ei_random<Scalar>());
|
|
|
|
Rotation2D<float> r2d1f = r2d1.template cast<float>();
|
|
|
|
VERIFY_IS_APPROX(r2d1f.template cast<Scalar>(),r2d1);
|
|
|
|
Rotation2D<double> r2d1d = r2d1.template cast<double>();
|
|
|
|
VERIFY_IS_APPROX(r2d1d.template cast<Scalar>(),r2d1);
|
2008-06-03 15:32:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void test_geometry()
|
|
|
|
{
|
|
|
|
for(int i = 0; i < g_repeat; i++) {
|
2008-06-03 21:43:29 +08:00
|
|
|
CALL_SUBTEST( geometry<float>() );
|
2008-08-31 21:32:29 +08:00
|
|
|
CALL_SUBTEST( geometry<double>() );
|
2008-06-03 15:32:12 +08:00
|
|
|
}
|
|
|
|
}
|