diff options
author | Marius Kintel <marius@kintel.net> | 2013-06-20 04:11:16 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-06-20 04:11:16 (GMT) |
commit | 1c719371cc83911cbd1758a695ed59fa7901fef4 (patch) | |
tree | cb903ecbad54e720d2ea91202b6be392d3cd0278 /src/cgalutils.cc | |
parent | bac587363ab9ecbbec61616c35c0a9f3000ec5a3 (diff) | |
parent | c75d19555256c5daceb9aea2c3e45010a7a75e88 (diff) |
Merge remote-tracking branch 'origin/epec-kernel'
Diffstat (limited to 'src/cgalutils.cc')
-rw-r--r-- | src/cgalutils.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgalutils.cc b/src/cgalutils.cc index 8b4c476..bb46f1c 100644 --- a/src/cgalutils.cc +++ b/src/cgalutils.cc @@ -193,7 +193,8 @@ void ZRemover::visit( CGAL_Nef_polyhedron3::Halffacet_const_handle hfacet ) std::vector<CGAL_Nef_polyhedron2::Explorer::Point> contour; CGAL_For_all( c1, cend ) { CGAL_Nef_polyhedron3::Point_3 point3d = c1->source()->target()->point(); - CGAL_Nef_polyhedron2::Explorer::Point point2d( point3d.x(), point3d.y() ); + CGAL_Nef_polyhedron2::Explorer::Point point2d(CGAL::to_double(point3d.x()), + CGAL::to_double(point3d.y())); contour.push_back( point2d ); } if (contour.size()==0) continue; |