replaced static tutorial_shared_path string with #define

This commit is contained in:
Daniel Crispell
2015-10-17 23:55:35 -04:00
parent ec31d54c63
commit bd37fbf7c1
51 changed files with 76 additions and 85 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ Eigen::MatrixXi F;
int main(int argc, char *argv[])
{
// Load a mesh in OFF format
igl::readOFF(tutorial_shared_path + "/cube.off", V, F);
igl::readOFF(TUTORIAL_SHARED_PATH "/cube.off", V, F);
// Print the vertices and faces matrices
std::cout << "Vertices: " << std::endl << V << std::endl;