/// @file common.h /// @namespace std /// Header file the libraries and some common operations #ifndef _COMMON_ #define _COMMON_ // STD #include #include #include #include // OpenMesh & Dense #include #include #include #include #include // Name space using namespace std; using namespace Eigen; using namespace OpenMesh; // Typedef typedef TriMesh_ArrayKernelT<> Mesh; #endif