// file: examples/Polyhedron_IO/polyhedron2vrml.C #include #include #include #include #include typedef CGAL::Simple_cartesian Kernel; typedef CGAL::Polyhedron_3 Polyhedron; int main() { Polyhedron P; std::cin >> P; CGAL::VRML_1_ostream out( std::cout); out << P; return ( std::cin && std::cout) ? 0 : 1; }