update input

This commit is contained in:
Sébastien Loriot 2020-12-07 16:22:26 +01:00
parent 639c115eaf
commit 3b8d8ecfde
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ int main(int argc, char* argv[])
typedef CGAL::Polyhedral_envelope<Kernel> Envelope;
std::ifstream in((argc>1) ? argv[1] : "data/unitsphere.off");
std::ifstream in((argc>1) ? argv[1] : "data/blobby.off");
Surface_mesh tmesh;
in >> tmesh;

View File

@ -12,7 +12,7 @@ int main(int argc, char* argv[])
typedef CGAL::Polyhedral_envelope<Kernel> Envelope;
std::ifstream in((argc>1) ? argv[1] : "data/unitsphere.off");
std::ifstream in((argc>1) ? argv[1] : "data/blobby.off");
double eps = (argc>2) ? std::stod(std::string(argv[2])) : 0.2;