CGAL Version:
master
6.0.1
latest
5.6.2
5.5.5
5.4.5
5.3.2
5.2.4
5.1.5
5.0.4
4.14.3
4.13.2
4.12.2
4.11.3
4.10.2
4.9.1
4.8.2
4.7
4.6.3
4.5.2
4.4
4.3
4.9
cgal.org
Top
Getting Started
Organization of the Manual
Package Overview
Acknowledging CGAL
CGAL 4.9 - 3D Boolean Operations on Nef Polyhedra
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Groups
Pages
CGAL 4.9 - 3D Boolean Operations on Nef Polyhedra
User Manual
Reference Manual
Bibliographic References
Class and Concept List
Examples
Nef_3/comparison.cpp
Nef_3/complex_construction.cpp
Nef_3/exploration_SM.cpp
Nef_3/extended_kernel.cpp
Nef_3/handling_double_coordinates.cpp
Nef_3/interface_polyhedron.cpp
Nef_3/nef_3_construction.cpp
Nef_3/nef_3_point_location.cpp
Nef_3/nef_3_simple.cpp
Nef_3/nefIO.cpp
Nef_3/offIO.cpp
Nef_3/point_set_operations.cpp
Nef_3/polyline_construction.cpp
Nef_3/set_operations.cpp
Nef_3/shell_exploration.cpp
Nef_3/topological_operations.cpp
Nef_3/transformation.cpp
Nef_3/nef_3_simple.cpp
#include <
CGAL/Exact_integer.h
>
#include <CGAL/Homogeneous.h>
#include <CGAL/Nef_polyhedron_3.h>
typedef
CGAL::Homogeneous<CGAL::Exact_integer>
Kernel
;
typedef
CGAL::Nef_polyhedron_3<Kernel>
Nef_polyhedron;
int
main() {
Nef_polyhedron N0(Nef_polyhedron::EMPTY);
Nef_polyhedron N1(Nef_polyhedron::COMPLETE);
CGAL_assertion (N0 == N1.complement());
return
0;
}