#include <Eigen/Core>
Go to the source code of this file.
|
| template<typename T , int R = Eigen::Dynamic> |
| using | wmtk::attribute::internal::VectorType = Eigen::Matrix< T, R, 1, 0,(R==Eigen::Dynamic ? MAX_ATTR_SIZE :R), 1 > |
| | Underlying vector type used by attribute is dynamically sized but bounded.
|
| |
| template<typename T , int R = Eigen::Dynamic> |
| using | wmtk::attribute::MapResult = typename internal::VectorType< T, R >::MapType |
| | the default map type used by attributes is a map of our vector type.
|
| |
| template<typename T , int R = Eigen::Dynamic> |
| using | wmtk::attribute::ConstMapResult = typename internal::VectorType< T, R >::ConstMapType |
| |
◆ WMTK_MAX_ATTRIBUTE_DIMENSION
| #define WMTK_MAX_ATTRIBUTE_DIMENSION Eigen::Dynamic |