updates due to renaming of some draw_* methods in Segment_Voronoi_diagram_2

This commit is contained in:
Menelaos Karavelas 2004-01-25 06:38:20 +00:00
parent a475dbcd4e
commit 8bb74f71c7
2 changed files with 7 additions and 2 deletions

View File

@ -15,7 +15,7 @@ public:
*widget << CGAL::BLUE;
*widget << CGAL::PointSize(3);
*widget << CGAL::LineWidth(3);
svd.draw_primal(*widget);
svd.draw_dual(*widget);
}
};

View File

@ -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()