mirror of https://github.com/CGAL/cgal
trailing whitespaces
This commit is contained in:
parent
d8b2a56fe3
commit
a827db20db
|
|
@ -24,7 +24,7 @@ Here a small example:
|
|||
<B>Middle</B>: the 2D linear cell complex reconstructed if combinatorial maps are the combinatorial data-structure.
|
||||
<B>Right</B>: the 2D linear cell complex reconstructed if generalized maps are the combinatorial data-structure.
|
||||
|
||||
\sa `CGAL::triangulation_3_to_lcc<LCC,Triangulation>`
|
||||
\sa `CGAL::triangulation_3_to_lcc<LCC,Triangulation>`
|
||||
\sa `CGAL::polyhedron_3_to_lcc<LCC,Polyhedron>`
|
||||
*/
|
||||
template<class LCC>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ namespace CGAL{
|
|||
Imports `apoly` (a `Polyhedron_3`) into `lcc`, a model of the `LinearCellComplex` concept. Objects are added in `lcc`, existing darts are not modified. Returns a dart created during the import.
|
||||
\pre \link GenericMap::dimension `LCC::dimension`\endlink \f$ \geq\f$ 2 and \link LinearCellComplex::ambient_dimension `LCC::ambient_dimension`\endlink==3.
|
||||
|
||||
\sa `CGAL::read_plane_graph_in_lcc<LCC>`
|
||||
\sa `CGAL::read_plane_graph_in_lcc<LCC>`
|
||||
\sa `CGAL::triangulation_3_to_lcc<LCC,Triangulation>`
|
||||
*/
|
||||
template<class LCC,class Polyhedron>
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ Objects are added in `lcc`, existing darts are not modified. Returns a dart crea
|
|||
\pre \link GenericMap::dimension `LCC::dimension`\endlink \f$ \geq\f$ 3 and
|
||||
\link LinearCellComplex::ambient_dimension `LCC::ambient_dimension`\endlink==3.
|
||||
|
||||
\sa `CGAL::read_plane_graph_in_lcc<LCC>`
|
||||
\sa `CGAL::polyhedron_3_to_lcc<LCC,Polyhedron>`
|
||||
\sa `CGAL::read_plane_graph_in_lcc<LCC>`
|
||||
\sa `CGAL::polyhedron_3_to_lcc<LCC,Polyhedron>`
|
||||
*/
|
||||
|
||||
template <class LCC,class Triangulation_>
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@ CGAL_DEPRECATED
|
|||
typename LCC::Dart_descriptor
|
||||
import_from_plane_graph(LCC& alcc, const char* filename)
|
||||
{
|
||||
return read_plane_graph_in_lcc(alcc, filename);
|
||||
return read_plane_graph_in_lcc(alcc, filename);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include <CGAL/Linear_cell_complex_for_combinatorial_map.h>
|
||||
#include <CGAL/Installation/internal/disable_deprecation_warnings_and_errors.h>
|
||||
#include <CGAL/Polyhedron_3.h>
|
||||
#include <CGAL/Polyhedron_3_to_lcc.h>
|
||||
#include <CGAL/Polyhedron_3_to_lcc.h>
|
||||
#include <sstream>
|
||||
#include <cassert>
|
||||
#include <cstdlib>
|
||||
|
|
@ -20,10 +20,10 @@ int main()
|
|||
|
||||
LCC lcc1, lcc2;
|
||||
|
||||
auto d1 = CGAL::polyhedron_3_to_lcc(lcc1, P);
|
||||
auto d1 = CGAL::polyhedron_3_to_lcc(lcc1, P);
|
||||
assert(d1 == LCC::null_descriptor);
|
||||
|
||||
auto d2 = CGAL::import_from_polyhedron_3<LCC>(lcc2, P);
|
||||
auto d2 = CGAL::import_from_polyhedron_3<LCC>(lcc2, P);
|
||||
assert(d2 == LCC::null_descriptor);
|
||||
#endif // CGAL_NO_DEPRECATED_CODE
|
||||
return EXIT_SUCCESS;
|
||||
|
|
|
|||
Loading…
Reference in New Issue