replaced static tutorial_shared_path string with #define

Former-commit-id: bd37fbf7c1
This commit is contained in:
Daniel Crispell
2015-10-17 23:55:35 -04:00
parent 4df6057189
commit 6eae3ca6b0
51 changed files with 70 additions and 79 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ int main(int argc, char *argv[])
{
using namespace Eigen;
using namespace std;
igl::readOFF(tutorial_shared_path + "/cheburashka.off",VA,FA);
igl::readOFF(tutorial_shared_path + "/decimated-knight.off",VB,FB);
igl::readOFF(TUTORIAL_SHARED_PATH "/cheburashka.off",VA,FA);
igl::readOFF(TUTORIAL_SHARED_PATH "/decimated-knight.off",VB,FB);
// Plot the mesh with pseudocolors
igl::viewer::Viewer viewer;