mirror of https://github.com/CGAL/cgal
Fix headers
This commit is contained in:
parent
1c1999411b
commit
e3d0e11b1e
|
|
@ -1,9 +0,0 @@
|
||||||
/*!
|
|
||||||
\ingroup PkgArrangement2op_left_shift
|
|
||||||
Inserts a conic arc into a given `Qt_widget` stream.
|
|
||||||
Only the basic geometric and topological features of the conic arcs are
|
|
||||||
written. Auxiliary data that might be attached is lost.
|
|
||||||
*/
|
|
||||||
template<typename ConicArc>
|
|
||||||
Qt_widget& operator<< (std::ostream& os,
|
|
||||||
const _Conic_x_monotone_arc_2<ConicArc>& cv);
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
namespace CGAL {
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\ingroup PkgArrangement2op_left_shift
|
|
||||||
Inserts a polyline into a given `Qt_widget` stream.
|
|
||||||
Only the basic geometric and topological features of the polylines are
|
|
||||||
written. Auxiliary data that might be attached is lost.
|
|
||||||
*/
|
|
||||||
template<typename SegmentTraits>
|
|
||||||
Qt_widget& operator<< (std::ostream& os,
|
|
||||||
const Polyline_2<SegmentTraits>& polyline);
|
|
||||||
}
|
|
||||||
|
|
@ -29,5 +29,15 @@ bool output_surface_facets_to_off (std::ostream& os,
|
||||||
int options =
|
int options =
|
||||||
Surface_mesher::IO_ORIENT_SURFACE);
|
Surface_mesher::IO_ORIENT_SURFACE);
|
||||||
|
|
||||||
|
namespace Surface_mesher {
|
||||||
|
/*!
|
||||||
|
\ingroup PkgSurfaceMesher3FunctionsIO
|
||||||
|
Options for function `output_surface_facets_to_off()`.
|
||||||
|
*/
|
||||||
|
enum IO_option { NO_OPTION = 0,
|
||||||
|
IO_ORIENT_SURFACE = 1,
|
||||||
|
IO_VERBOSE = 2 };
|
||||||
|
|
||||||
|
} /* namespace Surface_mesher */
|
||||||
} /* namespace CGAL */
|
} /* namespace CGAL */
|
||||||
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
namespace CGAL {
|
|
||||||
namespace Surface_mesher {
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\ingroup PkgSurfaceMesher3FunctionsIO
|
|
||||||
Options for function `output_surface_facets_to_off()`.
|
|
||||||
*/
|
|
||||||
enum IO_option { NO_OPTION = 0,
|
|
||||||
IO_ORIENT_SURFACE = 1,
|
|
||||||
IO_VERBOSE = 2 };
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue