Stereo Music Visualization using Manifold Harmonics  1.0
common.h
Go to the documentation of this file.
1 
5 #ifndef _COMMON_
6 #define _COMMON_
7 
8 // STD
9 #include <iostream>
10 #include <fstream>
11 #include <string>
12 #include <cfloat>
13 
14 // OpenMesh & Dense
15 #include <OpenMesh\Core\IO\MeshIO.hh>
16 #include <OpenMesh/Core/IO/Options.hh>
17 #include <OpenMesh\Core\Mesh\TriMesh_ArrayKernelT.hh>
18 #include <Dense>
19 #include <Eigenvalues>
20 
21 // Name space
22 using namespace std;
23 using namespace Eigen;
24 using namespace OpenMesh;
25 
26 // Typedef
27 typedef TriMesh_ArrayKernelT<> Mesh;
28 
29 
30 #endif