Skip to content

Commit

Permalink
Merge pull request #8371 from sloriot/Nef_3-draw_typo
Browse files Browse the repository at this point in the history
fix copy/paste error
  • Loading branch information
sloriot committed Jul 23, 2024
2 parents b0054fb + 4adcbe4 commit b364ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Nef_3/examples/Nef_3/draw_nef_3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ int main(int argc, char *argv[])
Polyhedron P1, P2;
std::ifstream ifs1((argc > 1) ? argv[1] : CGAL::data_file_path("meshes/cross_quad.off"));
ifs1 >> P1;
std::ifstream ifs2((argc > 1) ? argv[1] : CGAL::data_file_path("meshes/beam.off"));
std::ifstream ifs2((argc > 2) ? argv[2] : CGAL::data_file_path("meshes/beam.off"));
ifs2 >> P2;

// initialize nef from polyhedron
Expand Down

0 comments on commit b364ff6

Please sign in to comment.