This commit is contained in:
Maxime Gimeno 2020-01-17 11:55:38 +01:00
parent dd6cf454dc
commit d928a22a5f
2 changed files with 2 additions and 2 deletions

View File

@ -66,6 +66,6 @@ int main() {
Point( 0.0, 0.0, 1.5),
Point( 0.0, 0.5, 0.0));
CGAL::polyhedron_cut_plane_3( P, h, pl);
std::cout <<std::setprecision(17)<< P;
std::cout << std::setprecision(17)<< P;
return 0;
}

View File

@ -34,5 +34,5 @@ int main(int argc, char* argv[])
}
std::cout <<std::setprecision(17)<< sm1 << std::endl;
std::cout << std::setprecision(17)<< sm1 << std::endl;
}