mirror of https://github.com/CGAL/cgal
updates due to renaming of some draw_* methods in Segment_Voronoi_diagram_2
This commit is contained in:
parent
a475dbcd4e
commit
8bb74f71c7
|
|
@ -15,7 +15,7 @@ public:
|
|||
*widget << CGAL::BLUE;
|
||||
*widget << CGAL::PointSize(3);
|
||||
*widget << CGAL::LineWidth(3);
|
||||
svd.draw_primal(*widget);
|
||||
svd.draw_dual(*widget);
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -430,7 +430,12 @@ private slots:
|
|||
std::ofstream f(fileName);
|
||||
assert( f );
|
||||
f.precision(18);
|
||||
svd.write_sites(f);
|
||||
SVD_2::Finite_vertices_iterator vit;
|
||||
for (vit = svd.finite_vertices_begin();
|
||||
vit != svd.finite_vertices_end(); ++vit) {
|
||||
f << vit->site() << std::endl;
|
||||
}
|
||||
// svd.write_sites(f);
|
||||
}
|
||||
|
||||
void print_screen()
|
||||
|
|
|
|||
Loading…
Reference in New Issue