File: polyhedral_envelope_of_triangle_soup.cpp

package info (click to toggle)
cgal 6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144,912 kB
  • sloc: cpp: 810,858; ansic: 208,477; sh: 493; python: 411; makefile: 286; javascript: 174
file content (37 lines) | stat: -rw-r--r-- 1,016 bytes parent folder | download | duplicates (3)
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
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polyhedral_envelope.h>
#include <CGAL/IO/OFF.h>

#include <iostream>
#include <fstream>
#include <vector>

int main(int argc, char* argv[])
{
  typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
  typedef Kernel::Point_3 Point_3;

  typedef CGAL::Polyhedral_envelope<Kernel> Envelope;

  std::ifstream in((argc>1) ? argv[1] : CGAL::data_file_path("meshes/blobby.off"));
  double eps = (argc>2) ? std::stod(std::string(argv[2])) : 0.2;


  std::vector<Point_3> points;
  std::vector<std::vector<std::size_t> > polygons;

  CGAL::IO::read_OFF(in, points, polygons);

  Envelope envelope(points, polygons, eps);

  int i = (argc>3) ? std::stoi(std::string(argv[3])) : 0;
  int j = (argc>4) ? std::stoi(std::string(argv[4])) : 100;
  int k = (argc>5) ? std::stoi(std::string(argv[5])) : 200;

  if (envelope(points[i], points[j],points[k]))
  {
    std::cout << "inside polyhedral envelope" << std::endl;
  }

  return 0;
}