mirror of https://github.com/CGAL/cgal
Document named parameter verbose
This commit is contained in:
parent
36b66946b8
commit
0a743e6a1a
|
|
@ -812,6 +812,15 @@ void fill_header(std::ostream& os, const Surface_mesh<Point>& sm,
|
||||||
/// \param comments a string used to store the potential comments found in the PLY header.
|
/// \param comments a string used to store the potential comments found in the PLY header.
|
||||||
/// Each line starting by "comment " in the header is appended to the `comments` string
|
/// Each line starting by "comment " in the header is appended to the `comments` string
|
||||||
/// (without the "comment " word).
|
/// (without the "comment " word).
|
||||||
|
/// \param np optional \ref bgl_namedparameters "Named Parameters" described below
|
||||||
|
///
|
||||||
|
/// \cgalNamedParamsBegin
|
||||||
|
/// \cgalParamNBegin{verbose}
|
||||||
|
/// \cgalParamDescription{whether extra information is printed when an incident occurs during reading}
|
||||||
|
/// \cgalParamType{Boolean}
|
||||||
|
/// \cgalParamDefault{`false`}
|
||||||
|
/// \cgalParamNEnd
|
||||||
|
/// \cgalNamedParamsEnd
|
||||||
///
|
///
|
||||||
/// \pre The data in the stream must represent a two-manifold. If this is not the case
|
/// \pre The data in the stream must represent a two-manifold. If this is not the case
|
||||||
/// the `failbit` of `is` is set and the mesh cleared.
|
/// the `failbit` of `is` is set and the mesh cleared.
|
||||||
|
|
@ -821,11 +830,8 @@ void fill_header(std::ostream& os, const Surface_mesh<Point>& sm,
|
||||||
template <typename P, typename CGAL_NP_TEMPLATE_PARAMETERS>
|
template <typename P, typename CGAL_NP_TEMPLATE_PARAMETERS>
|
||||||
bool read_PLY(std::istream& is,
|
bool read_PLY(std::istream& is,
|
||||||
Surface_mesh<P>& sm,
|
Surface_mesh<P>& sm,
|
||||||
std::string& comments
|
std::string& comments,
|
||||||
#ifndef DOXYGEN_RUNNING
|
const CGAL_NP_CLASS& np = parameters::default_values())
|
||||||
, const CGAL_NP_CLASS& np = parameters::default_values()
|
|
||||||
#endif
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
typedef typename Surface_mesh<P>::size_type size_type;
|
typedef typename Surface_mesh<P>::size_type size_type;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue