mirror of https://github.com/CGAL/cgal
fix number type
This commit is contained in:
parent
2696c11a8f
commit
d279255f46
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue