fix number type

This commit is contained in:
Jane Tournois 2022-10-24 10:23:19 +02:00
parent 2696c11a8f
commit d279255f46
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ bool build_triangulation_from_file(std::istream& is,
is >> nv;
for(int i=0; i<nv; ++i)
{
double x,y,z;
typename Tr::Geom_traits::FT x,y,z;
is >> x >> y >> z >> ref;
points.push_back(Point_3(x,y,z));
}