mirror of https://github.com/CGAL/cgal
Add missing #include; remove an unused variable.
This commit is contained in:
parent
157116f7c8
commit
853010afa4
|
|
@ -1,8 +1,9 @@
|
||||||
#include <CGAL/Periodic_2_Delaunay_triangulation_2.h>
|
#include <CGAL/Periodic_2_Delaunay_triangulation_2.h>
|
||||||
#include <CGAL/Periodic_2_Delaunay_triangulation_traits_2.h>
|
#include <CGAL/Periodic_2_Delaunay_triangulation_traits_2.h>
|
||||||
|
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
||||||
#include <CGAL/draw_periodic_2_triangulation_2.h>
|
#include <CGAL/draw_periodic_2_triangulation_2.h>
|
||||||
|
|
||||||
#include<fstream>
|
#include <fstream>
|
||||||
|
|
||||||
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
||||||
typedef CGAL::Periodic_2_Delaunay_triangulation_traits_2<K> GT;
|
typedef CGAL::Periodic_2_Delaunay_triangulation_traits_2<K> GT;
|
||||||
|
|
@ -18,17 +19,18 @@ int main(int argc, char* argv[])
|
||||||
// Read points and insert in T
|
// Read points and insert in T
|
||||||
Point p;
|
Point p;
|
||||||
std::ifstream ifs((argc > 1) ? argv[1] : "data/data1.dt.cin");
|
std::ifstream ifs((argc > 1) ? argv[1] : "data/data1.dt.cin");
|
||||||
assert(ifs);
|
if (ifs)
|
||||||
while (ifs >> p) {
|
{
|
||||||
T.insert(p);
|
while (ifs >> p)
|
||||||
|
{ T.insert(p); }
|
||||||
|
CGAL_assertion(T.is_valid());
|
||||||
|
|
||||||
|
if( T.is_triangulation_in_1_sheet())
|
||||||
|
{ T.convert_to_9_sheeted_covering(); }
|
||||||
|
|
||||||
|
// Draw the periodic triangulation
|
||||||
|
CGAL::draw(T);
|
||||||
}
|
}
|
||||||
assert(T.is_valid());
|
|
||||||
|
|
||||||
if( T.is_triangulation_in_1_sheet())
|
|
||||||
T.convert_to_9_sheeted_covering();
|
|
||||||
|
|
||||||
// Draw the periodic triangulation
|
|
||||||
CGAL::draw(T);
|
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ namespace CGAL {
|
||||||
struct DefaultColorFunctorP2T2 {
|
struct DefaultColorFunctorP2T2 {
|
||||||
template <typename P2T2>
|
template <typename P2T2>
|
||||||
static CGAL::Color run(const P2T2 &,
|
static CGAL::Color run(const P2T2 &,
|
||||||
const typename P2T2::Periodic_triangle_iterator ti) {
|
const typename P2T2::Periodic_triangle_iterator /*ti*/) {
|
||||||
//CGAL::Random random((unsigned int)(std::size_t)(&*ti));
|
//CGAL::Random random((unsigned int)(std::size_t)(&*ti));
|
||||||
//return get_random_color(random);
|
//return get_random_color(random);
|
||||||
return CGAL::Color(73, 250, 117);
|
return CGAL::Color(73, 250, 117);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue