CGAL 6.0 - 3D Boolean Operations on Nef Polyhedra
Loading...
Searching...
No Matches
Nef_3/complex_construction.cpp
#include <CGAL/Homogeneous.h>
#include <CGAL/OFF_to_nef_3.h>
int main()
{
Nef_3 N;
std::size_t discarded = CGAL::OFF_to_nef_3 (std::cin, N, true);
std::cout << "Nef vertices: "
<< N.number_of_vertices() << std::endl;
std::cout << "Nef edges: "
<< N.number_of_edges() << std::endl;
std::cout << "Nef facets: "
<< N.number_of_facets() << std::endl;
std::cout << "Nef volumes: "
<< N.number_of_volumes() << std::endl;
std::cout << "number of discarded facets: "
<< discarded << std::endl;
return 0;
}
A 3D Nef polyhedron is a subset of the 3-dimensional space that is the result of forming complements ...
Definition: Nef_polyhedron_3.h:55
std::size_t OFF_to_nef_3(std::istream &in, Nef_polyhedron_3 &N)
This function creates a 3D Nef polyhedron from an OFF file which is read from input stream in.