mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-08 17:59:00 +08:00
Commented out duplicate definition of TransformTraits - was causing
compile-time errors.
This commit is contained in:
parent
fa9f7708d4
commit
093e3cd5b5
@ -26,12 +26,16 @@
|
|||||||
#ifndef EIGEN_TRANSFORM_H
|
#ifndef EIGEN_TRANSFORM_H
|
||||||
#define EIGEN_TRANSFORM_H
|
#define EIGEN_TRANSFORM_H
|
||||||
|
|
||||||
/** Represents some traits of a transformation */
|
// Definition of TransformTraits commented out (by andrew_coles@yahoo.co.uk)
|
||||||
enum TransformTraits {
|
// Is already defined (differently) in Constants.h, and gave duplicate
|
||||||
Isometry, ///< the transformation is a concatenation of translations and rotations
|
// definition compile-time errors
|
||||||
Affine, ///< the transformation is affine (linear transformation + translation)
|
|
||||||
Projective ///< the transformation might not be affine
|
///** Represents some traits of a transformation */
|
||||||
};
|
//enum TransformTraits {
|
||||||
|
// Isometry, ///< the transformation is a concatenation of translations and rotations
|
||||||
|
// Affine, ///< the transformation is affine (linear transformation + translation)
|
||||||
|
// Projective ///< the transformation might not be affine
|
||||||
|
//};
|
||||||
|
|
||||||
// Note that we have to pass Dim and HDim because it is not allowed to use a template
|
// Note that we have to pass Dim and HDim because it is not allowed to use a template
|
||||||
// parameter to define a template specialization. To be more precise, in the following
|
// parameter to define a template specialization. To be more precise, in the following
|
||||||
|
Loading…
x
Reference in New Issue
Block a user