9 #ifndef IMPALGEBRA_TRANSFORMATION_3D_H
10 #define IMPALGEBRA_TRANSFORMATION_3D_H
12 #include <IMP/algebra/algebra_config.h>
18 IMPALGEBRA_BEGIN_NAMESPACE
20 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
21 class Transformation3D;
22 Transformation3D
compose(
const Transformation3D &a,
const Transformation3D &b);
37 : trans_(t), rot_(r) {}
44 return rot_.get_rotated(o) + trans_;
80 out <<
" || " << trans_;
82 Transformation3D get_inverse()
const;
89 return rot_.get_is_valid();
124 "composing an invalid transformation");
129 class Transformation2D;
136 IMPALGEBRAEXPORT Transformation3D
147 IMPALGEBRAEXPORT Transformation3D
149 double max_translation = 5.,
150 double max_angle_in_rad = 0.26);
156 for (
unsigned int i = 0; i < 2; ++i) {
157 for (
unsigned int j = 0; j < 2; ++j) {
158 for (
unsigned int k = 0; k < 2; ++k) {
168 IMPALGEBRA_END_NAMESPACE
#define IMP_SHOWABLE_INLINE(Name, how_to_show)
Declare the methods needed by an object that can be printed.
const VectorD< D > & get_corner(unsigned int i) const
For 0 return lower corner and for 1, the upper corner.
Rotation2D compose(const Rotation2D &a, const Rotation2D &b)
compose two rotations a and b
BoundingBoxD< 3 > get_transformed(const BoundingBoxD< 3 > &bb, const Transformation3D &tr)
Return a bounding box containing the transformed box.
Transformation3D get_rotation_about_point(const Vector3D &point, const Rotation3D &rotation)
Generate a Transformation3D object from a rotation around a point.
#define IMP_VALUES(Name, PluralName)
Define the type for storing sets of values.
Base class for geometric types.
A bounding box in D dimensions.
Transformation3D compose(const Transformation3D &a, const Transformation3D &b)
Compose two transformations.
Simple 3D rotation class.
Transformation3D get_identity_transformation_3d()
Return a transformation that does not do anything.
Transformation3D get_transformation_3d(const Transformation2D &t2d)
Builds a 3D transformation from a 2D one.
Rotation3D get_identity_rotation_3d()
Return a rotation that does not do anything.
#define IMP_USAGE_CHECK(expr, message)
A runtime test for incorrect usage of a class or method.
DensityMap * get_transformed(const DensityMap *input, const algebra::Transformation3D &tr, double threshold)
Return a new density map containing a rotated version of the old one.
Transformation3D get_random_local_transformation(Vector3D origin, double max_translation=5., double max_angle_in_rad=0.26)
Get a local transformation.