File: p2t2_covering.cpp

package info (click to toggle)
cgal 4.5-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 69,700 kB
  • ctags: 118,537
  • sloc: cpp: 571,870; ansic: 110,997; sh: 725; python: 92; makefile: 87
file content (52 lines) | stat: -rw-r--r-- 1,779 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Periodic_2_triangulation_traits_2.h>
#include <CGAL/Periodic_2_Delaunay_triangulation_2.h>

#include <iostream>
#include <vector>

typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Periodic_2_triangulation_traits_2<K> GT;

typedef CGAL::Periodic_2_Delaunay_triangulation_2<GT> PDT;

typedef PDT::Point                  Point;
typedef PDT::Covering_sheets        Covering_sheets;

int main()
{
  PDT T;

  // Input point grid (27 points)
  for (double x = 0. ; x < .9 ; x += 0.4)
    {
      for (double y = 0. ; y < .9 ; y += 0.4)
        {
          T.insert(Point(x, y));
        }
    }

  Covering_sheets cs = T.number_of_sheets();
  std::cout << "Current covering: " << cs[0] << ' ' << cs[1] << std::endl;

  if ( T.is_triangulation_in_1_sheet() )                                        // = true
    {
      bool is_extensible = T.is_extensible_triangulation_in_1_sheet_h1()
                           || T.is_extensible_triangulation_in_1_sheet_h2();                         // = false
      T.convert_to_1_sheeted_covering();
      cs = T.number_of_sheets();
      std::cout << "Current covering: " << cs[0] << ' ' << cs[1] << std::endl;
      if ( is_extensible )                                                        // = false
        std::cout << "It is safe to change the triangulation here." << std::endl;
      else
        std::cout << "It is NOT safe to change the triangulation here!" << std::endl;

      T.convert_to_9_sheeted_covering();
      cs = T.number_of_sheets();
      std::cout << "Current covering: " << cs[0] << ' ' << cs[1] << std::endl;
    }

  std::cout << "It is (again) safe to modify the triangulation." << std::endl;

  return 0;
}