fwd.hpp
Go to the documentation of this file.
1 
2 #ifndef FLEX_FWD_HPP_
3 #define FLEX_FWD_HPP_
4 
5 #include <Eigen/Dense>
6 namespace flex {
7 
8 typedef Eigen::Vector2d eVector2;
9 typedef Eigen::Array2d eArray2;
10 typedef Eigen::Matrix3d eMatrixRot;
11 typedef Eigen::Vector3d eVector3;
12 typedef Eigen::VectorXd eVectorX;
13 typedef Eigen::Matrix2d eMatrix2;
14 
15 namespace python {
16 void exposeFlex();
17 }
18 } // namespace flex
19 
20 #endif // FLEX_FWD_HPP_
void exposeFlex()
Definition: flexi-hips.hpp:9
Eigen::Vector3d eVector3
Definition: fwd.hpp:11
Eigen::Vector2d eVector2
Definition: fwd.hpp:8
Eigen::Matrix2d eMatrix2
Definition: fwd.hpp:13
Eigen::VectorXd eVectorX
Definition: fwd.hpp:12
Eigen::Array2d eArray2
Definition: fwd.hpp:9
Eigen::Matrix3d eMatrixRot
Definition: fwd.hpp:10