You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The description of CGAL::Nef_polyhedron_3 in the class template reference page is imprecise
The class template is listed as having 2 template parameters (CGAL::Nef_polyhedron_3< Nef_polyhedronTraits_3, Nef_polyhedronItems_3 >), but then it is written, and I quote: "The second parameter and the third parameter are for future considerations. ". in fact the class template has 3 template parameters (CGAL::Nef_polyhedron_3< Nef_polyhedronTraits_3, Nef_polyhedronItems_3, Mark>). The last 2 parameters have default values. So, either add the 3rd missing parameter or drop the mentioning of the third parameter. I personally, prefer the former (true advertisement).
The constructor: Nef_polyhedron_3 (Polyhedron &P) is a function template, and its signature is missing the template<class Polyhedron> part.
This is minor (even more than the above...), but while at it we can improve the text. The sentence "The first parameter requires one of the following exact kernels: ...." should be made formal: "When the class template is instantiated, the first template parameter can be substituted by one of the following exact kernels: ...."
Source Code
Environment
Operating system (Windows/Mac/Linux, 32/64 bits):
Compiler:
Release or debug mode:
Specific flags used (if any):
CGAL version:
Boost version:
Other libraries versions if used (Eigen, TBB, etc.):
The text was updated successfully, but these errors were encountered:
The description of
CGAL::Nef_polyhedron_3
in the class template reference page is impreciseCGAL::Nef_polyhedron_3< Nef_polyhedronTraits_3, Nef_polyhedronItems_3 >
), but then it is written, and I quote: "The second parameter and the third parameter are for future considerations. ". in fact the class template has 3 template parameters (CGAL::Nef_polyhedron_3< Nef_polyhedronTraits_3, Nef_polyhedronItems_3, Mark>
). The last 2 parameters have default values. So, either add the 3rd missing parameter or drop the mentioning of the third parameter. I personally, prefer the former (true advertisement).Nef_polyhedron_3 (Polyhedron &P)
is a function template, and its signature is missing thetemplate<class Polyhedron>
part.Source Code
Environment
The text was updated successfully, but these errors were encountered: