2004-03-08 02:48:13 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* VCGLib o o *
|
|
|
|
* Visual and Computer Graphics Library o o *
|
|
|
|
* _ O _ *
|
|
|
|
* Copyright(C) 2004 \/)\/ *
|
|
|
|
* Visual Computing Lab /\/| *
|
|
|
|
* ISTI - Italian National Research Council | *
|
|
|
|
* \ *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This program is free software; 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. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License (http://www.gnu.org/licenses/gpl.txt) *
|
|
|
|
* for more details. *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
|
|
History
|
|
|
|
|
2004-03-25 15:57:50 +01:00
|
|
|
$Log: not supported by cvs2svn $
|
2004-03-08 02:48:13 +01:00
|
|
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
2004-03-06 16:45:35 +01:00
|
|
|
#ifndef SIMILARITY_H
|
|
|
|
#define SIMILARITY_H
|
|
|
|
|
|
|
|
#include <vcg/math/quaternion.h>
|
|
|
|
#include <vcg/math/matrix44.h>
|
|
|
|
|
|
|
|
namespace vcg {
|
|
|
|
|
|
|
|
template <class S> class Similarity {
|
|
|
|
public:
|
|
|
|
Similarity() {}
|
2004-03-25 14:54:06 +01:00
|
|
|
Similarity(const Quaternion<S> &q) { SetRotate(q); }
|
|
|
|
Similarity(const Point3<S> &p) { SetTranslate(p); }
|
|
|
|
Similarity(S s) { SetScale(s); }
|
2004-03-06 16:45:35 +01:00
|
|
|
|
|
|
|
Similarity operator*(const Similarity &affine) const;
|
|
|
|
Similarity &operator*=(const Similarity &affine);
|
2004-03-25 14:54:06 +01:00
|
|
|
//Point3<S> operator*(const Point3<S> &p) const;
|
2004-03-06 16:45:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
Similarity &SetIdentity();
|
|
|
|
Similarity &SetScale(const S s);
|
|
|
|
Similarity &SetTranslate(const Point3<S> &t);
|
|
|
|
///use radiants for angle.
|
2004-03-09 14:57:29 +01:00
|
|
|
Similarity &SetRotate(S angle, const Point3<S> & axis);
|
|
|
|
Similarity &SetRotate(const Quaternion<S> &q);
|
2004-03-06 16:45:35 +01:00
|
|
|
|
|
|
|
Matrix44<S> Matrix() const;
|
2004-03-09 14:57:29 +01:00
|
|
|
void FromMatrix(const Matrix44<S> &m);
|
2004-03-06 16:45:35 +01:00
|
|
|
|
|
|
|
Quaternion<S> rot;
|
|
|
|
Point3<S> tra;
|
|
|
|
S sca;
|
|
|
|
};
|
|
|
|
|
2004-03-09 14:57:29 +01:00
|
|
|
template <class S> Similarity<S> &Invert(Similarity<S> &m);
|
|
|
|
template <class S> Similarity<S> Inverse(const Similarity<S> &m);
|
2004-03-25 14:54:06 +01:00
|
|
|
template <class S> Point3<S> operator*(const Point3<S> &p, const Similarity<S> &m);
|
2004-03-09 14:57:29 +01:00
|
|
|
|
|
|
|
|
2004-03-06 16:45:35 +01:00
|
|
|
template <class S> Similarity<S> Similarity<S>::operator*(const Similarity &a) const {
|
|
|
|
Similarity<S> r;
|
|
|
|
r.rot = rot * a.rot;
|
|
|
|
r.sca = sca * a.sca;
|
|
|
|
r.tra = (rot.Rotate(a.tra)) * sca + tra;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class S> Similarity<S> &Similarity<S>::operator*=(const Similarity &a) {
|
|
|
|
rot = rot * a.rot;
|
|
|
|
sca = sca * a.sca;
|
|
|
|
tra = (rot.Rotate(a.tra)) * sca + tra;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class S> Similarity<S> &Similarity<S>::SetIdentity() {
|
|
|
|
rot.FromAxis(0, Point3<S>(1, 0, 0));
|
|
|
|
tra = Point3<S>(0, 0, 0);
|
|
|
|
sca = 1;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class S> Similarity<S> &Similarity<S>::SetScale(const S s) {
|
|
|
|
SetIdentity();
|
|
|
|
sca = s;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class S> Similarity<S> &Similarity<S>::SetTranslate(const Point3<S> &t) {
|
|
|
|
SetIdentity();
|
|
|
|
tra = t;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2004-03-09 14:57:29 +01:00
|
|
|
template <class S> Similarity<S> &Similarity<S>::SetRotate(S angle, const Point3<S> &axis) {
|
2004-03-06 16:45:35 +01:00
|
|
|
SetIdentity();
|
|
|
|
rot.FromAxis(angle, axis);
|
2004-03-09 14:57:29 +01:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class S> Similarity<S> &Similarity<S>::SetRotate(const Quaternion<S> &q) {
|
|
|
|
SetIdentity();
|
|
|
|
rot = q;
|
|
|
|
return *this;
|
2004-03-06 16:45:35 +01:00
|
|
|
}
|
|
|
|
|
2004-03-09 14:57:29 +01:00
|
|
|
|
2004-03-06 16:45:35 +01:00
|
|
|
template <class S> Matrix44<S> Similarity<S>::Matrix() const {
|
|
|
|
Matrix44<S> r;
|
|
|
|
rot.ToMatrix(r);
|
|
|
|
r *= Matrix44<S>().SetScale(sca, sca, sca);
|
|
|
|
Matrix44<S> t = Matrix44<S>().SetTranslate(tra[0], tra[1], tra[2]);
|
|
|
|
r *= t;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2004-03-09 14:57:29 +01:00
|
|
|
template <class S> void Similarity<S>::FromMatrix(const Matrix44<S> &m) {
|
2004-03-25 14:54:06 +01:00
|
|
|
sca = (S)pow(m.Determinant(), 1/3);
|
2004-03-09 14:57:29 +01:00
|
|
|
assert(sca != 0);
|
|
|
|
Matrix44<S> t = m * Matrix44<S>().SetScale(1/sca, 1/sca, 1/sca);
|
|
|
|
rot.FromMatrix(t);
|
|
|
|
tra[0] = t.element(3, 0);
|
|
|
|
tra[1] = t.element(3, 1);
|
|
|
|
tra[2] = t.element(3, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class S> Similarity<S> &Invert(Similarity<S> &a) {
|
2004-03-06 16:45:35 +01:00
|
|
|
a.rot.Invert();
|
|
|
|
a.sca = 1/a.sca;
|
|
|
|
a.tra = a.rot.Rotate(-a.tra)*a.sca;
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2004-03-09 14:57:29 +01:00
|
|
|
template <class S> Similarity<S> Inverse(const Similarity<S> &m) {
|
|
|
|
Similarity<S> a = m;
|
|
|
|
return Invert(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <class S> Similarity<S> Interpolate(const Similarity<S> &a, const Similarity<S> &b, const S t) {
|
2004-03-06 16:45:35 +01:00
|
|
|
Similarity<S> r;
|
|
|
|
r.rot = interpolate(a.rot, b.rot, t);
|
|
|
|
r.tra = t * a.tra + (1-t) * b.tra;
|
|
|
|
r.sca = t * a.sca + (1-t) * b.sca;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2004-03-25 14:54:06 +01:00
|
|
|
template <class S> Point3<S> operator*(const Point3<S> &p, const Similarity<S> &m) {
|
|
|
|
Point3<S> r = m.rot.Rotate(p);
|
|
|
|
r *= m.sca;
|
|
|
|
r += m.tra;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2004-03-06 16:45:35 +01:00
|
|
|
typedef Similarity<float> Similarityf;
|
|
|
|
typedef Similarity<double>Similarityd;
|
|
|
|
|
|
|
|
} //namespace
|
|
|
|
|
|
|
|
#endif
|