File: polyhedral_envelope_mesh_containment.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 (48 lines) | stat: -rw-r--r-- 1,686 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
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polyhedral_envelope.h>
#include <CGAL/Polygon_mesh_processing/remesh.h>
#include <CGAL/Surface_mesh.h>

#include <algorithm>
#include <iostream>
#include <fstream>

namespace PMP = CGAL::Polygon_mesh_processing;

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

  typedef CGAL::Polyhedral_envelope<Kernel> Envelope;

  std::ifstream in((argc>1) ? argv[1] : CGAL::data_file_path("meshes/blobby.off"));
  Mesh tmesh;
  in >> tmesh;

  // remesh the input using the longest edge size as target edge length
  Mesh query = tmesh;
  Mesh::Edge_iterator longest_edge_it =
    std::max_element(edges(query).begin(), edges(query).end(),
                     [&query](Mesh::Edge_index e1, Mesh::Edge_index e2)
                     {
                        return PMP::edge_length(halfedge(e1, query), query) <
                               PMP::edge_length(halfedge(e2, query), query);
                     });
  PMP::isotropic_remeshing(faces(tmesh), PMP::edge_length(halfedge(*longest_edge_it, query), query), query);

  // construct the polyhedral envelope
  const double eps = (argc>2) ? std::stod(std::string(argv[2])) : 0.01;
  Envelope envelope(tmesh, eps);

  // check is the remeshed version is inside the polyhedral envelope of the input mesh
  if ( envelope(query) )
    std::cout << "Remeshing is inside the polyhedral envelope\n";
  else
    std::cout << "Remeshing is not inside the polyhedral envelope\n";

  std::ofstream("remeshed.off") << query;

  return 0;
}