mirror of https://github.com/CGAL/cgal
412 lines
16 KiB
C++
412 lines
16 KiB
C++
// Copyright (c) 2015 GeometryFactory (France). All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public License as
|
|
// published by the Free Software Foundation; either version 3 of the License,
|
|
// or (at your option) any later version.
|
|
//
|
|
// Licensees holding a valid commercial license may use this file in
|
|
// accordance with the commercial license agreement provided with the software.
|
|
//
|
|
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
|
//
|
|
//
|
|
// Author(s) : Andreas Fabri
|
|
|
|
#ifndef CGAL_BOOST_GRAPH_COPY_FACE_GRAPH_H
|
|
#define CGAL_BOOST_GRAPH_COPY_FACE_GRAPH_H
|
|
|
|
#include <CGAL/config.h>
|
|
#include <CGAL/iterator.h>
|
|
#include <CGAL/Kernel_traits.h>
|
|
#include <CGAL/Cartesian_converter.h>
|
|
|
|
#include <CGAL/boost/graph/Euler_operations.h>
|
|
#include <CGAL/boost/graph/iterator.h>
|
|
#include <CGAL/boost/graph/helpers.h>
|
|
#include <CGAL/boost/graph/Named_function_parameters.h>
|
|
#include <CGAL/boost/graph/named_params_helper.h>
|
|
#include <CGAL/property_map.h>
|
|
#include <boost/unordered_map.hpp>
|
|
#include <boost/utility/enable_if.hpp>
|
|
#include <boost/function_output_iterator.hpp>
|
|
|
|
namespace CGAL {
|
|
|
|
namespace internal {
|
|
|
|
template <typename SourceMesh, typename TargetMesh,
|
|
typename Hmap,
|
|
typename V2V, typename H2H, typename F2F,
|
|
typename Src_vpm, typename Tgt_vpm>
|
|
void copy_face_graph_impl(const SourceMesh& sm, TargetMesh& tm,
|
|
Hmap hmap,
|
|
V2V v2v, H2H h2h, F2F f2f,
|
|
Src_vpm sm_vpm, Tgt_vpm tm_vpm )
|
|
{
|
|
typedef typename boost::graph_traits<SourceMesh>::vertex_descriptor sm_vertex_descriptor;
|
|
typedef typename boost::graph_traits<TargetMesh>::vertex_descriptor tm_vertex_descriptor;
|
|
typedef typename boost::graph_traits<TargetMesh>::vertex_iterator tm_vertex_iterator;
|
|
|
|
typedef typename boost::graph_traits<SourceMesh>::face_descriptor sm_face_descriptor;
|
|
typedef typename boost::graph_traits<TargetMesh>::face_descriptor tm_face_descriptor;
|
|
|
|
typedef typename boost::graph_traits<SourceMesh>::halfedge_descriptor sm_halfedge_descriptor;
|
|
typedef typename boost::graph_traits<TargetMesh>::halfedge_descriptor tm_halfedge_descriptor;
|
|
|
|
typedef typename boost::graph_traits<SourceMesh>::edge_descriptor sm_edge_descriptor;
|
|
typedef typename boost::graph_traits<TargetMesh>::edge_descriptor tm_edge_descriptor;
|
|
|
|
Cartesian_converter<typename Kernel_traits<typename boost::property_traits<Src_vpm>::value_type>::type,
|
|
typename Kernel_traits<typename boost::property_traits<Tgt_vpm>::value_type>::type >
|
|
conv;
|
|
|
|
std::vector<tm_halfedge_descriptor> tm_border_halfedges;
|
|
std::vector<sm_halfedge_descriptor> sm_border_halfedges;
|
|
|
|
tm_face_descriptor tm_null_face = boost::graph_traits<TargetMesh>::null_face();
|
|
|
|
reserve(tm, static_cast<typename boost::graph_traits<TargetMesh>::vertices_size_type>(vertices(sm).size()),
|
|
static_cast<typename boost::graph_traits<TargetMesh>::edges_size_type>(edges(sm).size()),
|
|
static_cast<typename boost::graph_traits<TargetMesh>::faces_size_type>(faces(sm).size()) );
|
|
|
|
//insert halfedges and create each vertex when encountering its halfedge
|
|
BOOST_FOREACH(sm_edge_descriptor sm_e, edges(sm))
|
|
{
|
|
tm_edge_descriptor tm_e = add_edge(tm);
|
|
sm_halfedge_descriptor sm_h = halfedge(sm_e, sm), sm_h_opp = opposite(sm_h, sm);
|
|
tm_halfedge_descriptor tm_h = halfedge(tm_e, tm), tm_h_opp = opposite(tm_h, tm);
|
|
|
|
// set next pointers to itself (in case previous garbage is present)
|
|
set_next( tm_h, tm_h, tm );
|
|
set_next( tm_h_opp, tm_h_opp, tm );
|
|
|
|
put(hmap, sm_h, tm_h);
|
|
put(hmap, sm_h_opp, tm_h_opp);
|
|
*h2h++=std::make_pair(sm_h, tm_h);
|
|
*h2h++=std::make_pair(sm_h_opp, tm_h_opp);
|
|
|
|
if ( is_border(sm_h, sm) ){
|
|
tm_border_halfedges.push_back( tm_h );
|
|
sm_border_halfedges.push_back( sm_h );
|
|
set_face(tm_h, tm_null_face, tm);
|
|
CGAL_assertion(next(tm_h, tm) == tm_h );
|
|
}
|
|
|
|
if( is_border(sm_h_opp, sm) ){
|
|
tm_border_halfedges.push_back( tm_h_opp );
|
|
sm_border_halfedges.push_back( sm_h_opp );
|
|
set_face(tm_h_opp, tm_null_face, tm);
|
|
CGAL_assertion(next(tm_h_opp, tm) == tm_h_opp );
|
|
}
|
|
|
|
//create a copy of interior vertices only once
|
|
sm_vertex_descriptor sm_h_src = source(sm_h,sm), sm_h_tgt = target(sm_h,sm);
|
|
if ( halfedge(sm_h_tgt,sm)==sm_h )
|
|
{
|
|
tm_vertex_descriptor tm_h_tgt = add_vertex(tm);
|
|
*v2v++=std::make_pair(sm_h_tgt, tm_h_tgt);
|
|
set_halfedge(tm_h_tgt, tm_h, tm);
|
|
set_target(tm_h, tm_h_tgt, tm);
|
|
put(tm_vpm, tm_h_tgt, conv(get(sm_vpm, sm_h_tgt)));
|
|
}
|
|
if ( halfedge(sm_h_src,sm)==sm_h_opp )
|
|
{
|
|
tm_vertex_descriptor tm_h_src = add_vertex(tm);
|
|
*v2v++=std::make_pair(sm_h_src, tm_h_src);
|
|
set_halfedge(tm_h_src, tm_h_opp, tm);
|
|
set_target(tm_h_opp, tm_h_src, tm);
|
|
put(tm_vpm, tm_h_src, conv(get(sm_vpm, sm_h_src)));
|
|
}
|
|
}
|
|
//create faces and connect halfedges
|
|
BOOST_FOREACH(sm_face_descriptor sm_f, faces(sm))
|
|
{
|
|
tm_face_descriptor tm_f = add_face(tm);
|
|
*f2f++=std::make_pair(sm_f, tm_f);
|
|
|
|
sm_halfedge_descriptor sm_h_i=halfedge(sm_f, sm);
|
|
tm_halfedge_descriptor tm_h_prev = get(hmap, prev(sm_h_i, sm));
|
|
set_halfedge(tm_f, tm_h_prev, tm);
|
|
|
|
CGAL_precondition(*halfedges_around_face(sm_h_i, sm).first == sm_h_i);
|
|
BOOST_FOREACH(sm_halfedge_descriptor sm_h, halfedges_around_face(sm_h_i, sm))
|
|
{
|
|
tm_halfedge_descriptor tm_h = get(hmap, sm_h);
|
|
set_next(tm_h_prev, tm_h, tm);
|
|
set_face(tm_h, tm_f, tm);
|
|
tm_h_prev=tm_h;
|
|
}
|
|
}
|
|
|
|
// update next/prev of tm border halfedges
|
|
std::size_t nb_border_hedges = tm_border_halfedges.size();
|
|
for (std::size_t i=0; i< nb_border_hedges; ++i)
|
|
{
|
|
tm_halfedge_descriptor tm_h = tm_border_halfedges[i];
|
|
|
|
if ( next(tm_h, tm) != tm_h )
|
|
continue; //already set
|
|
|
|
tm_halfedge_descriptor tm_h_prev = tm_h;
|
|
CGAL_precondition(*halfedges_around_face(sm_border_halfedges[i], sm).first == sm_border_halfedges[i]);
|
|
BOOST_FOREACH(sm_halfedge_descriptor sm_h,
|
|
halfedges_around_face(next(sm_border_halfedges[i], sm), sm))
|
|
{
|
|
CGAL_assertion(next(tm_h_prev, tm) == tm_h_prev);
|
|
tm_h = get(hmap, sm_h);
|
|
set_next(tm_h_prev, tm_h, tm);
|
|
tm_h_prev=tm_h;
|
|
}
|
|
}
|
|
// update halfedge vertex of all but the vertex halfedge
|
|
for(tm_vertex_iterator vit = vertices(tm).first;
|
|
vit != vertices(tm).second; ++vit)
|
|
{
|
|
tm_vertex_descriptor v = *vit;
|
|
tm_halfedge_descriptor h = halfedge(v, tm);
|
|
tm_halfedge_descriptor next_around_vertex=h;
|
|
do{
|
|
next_around_vertex=opposite(next(next_around_vertex, tm), tm);
|
|
set_target(next_around_vertex, v, tm);
|
|
}while(h != next_around_vertex);
|
|
}
|
|
}
|
|
|
|
template <typename SourceMesh, typename TargetMesh,
|
|
typename V2V, typename H2H, typename F2F,
|
|
typename Src_vpm, typename Tgt_vpm>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm,
|
|
Tag_false,
|
|
V2V v2v, H2H h2h, F2F f2f,
|
|
Src_vpm sm_vpm, Tgt_vpm tm_vpm )
|
|
{
|
|
typedef typename boost::graph_traits<SourceMesh>::halfedge_descriptor sm_halfedge_descriptor;
|
|
typedef typename boost::graph_traits<TargetMesh>::halfedge_descriptor tm_halfedge_descriptor;
|
|
|
|
boost::unordered_map<sm_halfedge_descriptor,
|
|
tm_halfedge_descriptor> hash_map(num_halfedges(sm));
|
|
copy_face_graph_impl(sm, tm,
|
|
boost::make_assoc_property_map(hash_map),
|
|
v2v, h2h, f2f,
|
|
sm_vpm, tm_vpm);
|
|
}
|
|
|
|
template <typename SourceMesh, typename TargetMesh,
|
|
typename V2V, typename H2H, typename F2F,
|
|
typename Src_vpm, typename Tgt_vpm>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm,
|
|
Tag_true,
|
|
V2V v2v, H2H h2h, F2F f2f,
|
|
Src_vpm sm_vpm, Tgt_vpm tm_vpm )
|
|
{
|
|
typedef typename boost::graph_traits<TargetMesh>::halfedge_descriptor tm_halfedge_descriptor;
|
|
std::vector<tm_halfedge_descriptor> hedges(num_halfedges(sm));
|
|
|
|
// init halfedge index map
|
|
/// \TODO shall we keep that?
|
|
helpers::init_halfedge_indices(const_cast<SourceMesh&>(sm),
|
|
get(boost::halfedge_index, sm));
|
|
|
|
copy_face_graph_impl(sm, tm,
|
|
bind_property_maps(get(boost::halfedge_index, sm),
|
|
make_property_map(hedges)),
|
|
v2v, h2h, f2f,
|
|
sm_vpm, tm_vpm);
|
|
}
|
|
|
|
|
|
|
|
} // end of namespace internal
|
|
namespace impl
|
|
{
|
|
template<typename PMAP>
|
|
struct Output_iterator_functor
|
|
{
|
|
typedef typename boost::property_traits<PMAP>::key_type input_t;
|
|
typedef typename boost::property_traits<PMAP>::value_type output_t;
|
|
PMAP map;
|
|
Output_iterator_functor(PMAP map)
|
|
:map(map)
|
|
{
|
|
}
|
|
void operator()(const typename std::pair<input_t, output_t>& pair)
|
|
{
|
|
put(map, pair.first, pair.second);
|
|
}
|
|
|
|
};
|
|
|
|
template<typename PMAP>
|
|
boost::function_output_iterator<Output_iterator_functor<PMAP> > make_functor(PMAP map)
|
|
{
|
|
return boost::make_function_output_iterator(Output_iterator_functor<PMAP>(map));
|
|
}
|
|
|
|
inline Emptyset_iterator make_functor(const internal_np::Param_not_found&)
|
|
{
|
|
return Emptyset_iterator();
|
|
}
|
|
}//end of impl
|
|
|
|
/*!
|
|
\ingroup PkgBGLHelperFct
|
|
|
|
copies a source model of `FaceListGraph` into a target model of a
|
|
`FaceListGraph`. `OutputIterators` can be provided to produce a
|
|
mapping between source and target elements. The target graph is not
|
|
cleared.
|
|
|
|
\tparam SourceMesh a model of `FaceListGraph`.
|
|
The descriptor types `boost::graph_traits<SourceMesh>::%vertex_descriptor`
|
|
and `boost::graph_traits<SourceMesh>::%face_descriptor` must be
|
|
models of `Hashable`.
|
|
\tparam TargetMesh a model of `FaceListGraph`
|
|
\tparam NamedParameters1 a sequence of \ref pmp_namedparameters "Named Parameters"
|
|
\tparam NamedParameters2 a sequence of \ref pmp_namedparameters "Named Parameters"
|
|
|
|
The types `sm_vertex_descriptor` and `sm_face_descriptor` must be models of the concept `Hashable`.
|
|
|
|
\param sm the source mesh
|
|
\param tm the target mesh
|
|
\param np1 optional sequence of \ref pmp_namedparameters "Named Parameters" among the ones listed below
|
|
|
|
\cgalNamedParamsBegin
|
|
\cgalParamBegin{vertex_point_map}
|
|
the property map with the points associated to the vertices of `sm` .
|
|
If this parameter is omitted, an internal property map for
|
|
`CGAL::vertex_point_t` should be available in `SourceMesh`
|
|
\cgalParamEnd
|
|
\cgalParamBegin{vertex_to_vertex_output_iterator} an `OutputIterator` containing the
|
|
pairs source-vertex, target-vertex. If this parameter is given, then
|
|
`vertex_to_vertex_map` cannot be used.
|
|
\cgalParamEnd
|
|
\cgalParamBegin{halfedge_to_halfedge_output_iterator} an `OutputIterator` containing the
|
|
pairs source-halfedge, target-halfedge. If this parameter is given, then
|
|
`halfedge_to_halfedge_map` cannot be used.
|
|
\cgalParamEnd
|
|
\cgalParamBegin{face_to_face_output_iterator} an `OutputIterator` containing the
|
|
pairs source-face, target-face. If this parameter is given, then
|
|
`face_to_face_map` cannot be used.
|
|
\cgalParamEnd
|
|
\cgalParamBegin{vertex_to_vertex_map} a `ReadWritePropertyMap` containing the
|
|
pairs source-vertex, target-vertex.
|
|
\cgalParamEnd
|
|
\cgalParamBegin{halfedge_to_halfedge_map} a `ReadWritePropertyMap` containing the
|
|
pairs source-halfedge, target-halfedge.
|
|
\cgalParamEnd
|
|
\cgalParamBegin{face_to_face_map} a `ReadWritePropertyMap` containing the
|
|
pairs source-face, target-face.
|
|
\cgalParamEnd
|
|
\cgalNamedParamsEnd
|
|
|
|
\param np2 optional sequence of \ref pmp_namedparameters "Named Parameters" among the ones listed below
|
|
|
|
\cgalNamedParamsBegin
|
|
\cgalParamBegin{vertex_point_map}
|
|
the property map with the points associated to the vertices of `tm`.
|
|
If this parameter is omitted, an internal property map for
|
|
`CGAL::vertex_point_t` should be available in `TargetMesh`
|
|
\cgalParamEnd
|
|
\cgalNamedParamsEnd
|
|
|
|
The points from `sm` to `tm` are converted using
|
|
`CGAL::Cartesian_converter<SourceKernel, TargetKernel>`.
|
|
`SourceKernel` and `TargetKernel` are deduced using `CGAL::Kernel_traits`
|
|
from the value types of the vertex_point_maps.
|
|
|
|
Other properties are not copied.
|
|
*/
|
|
template <typename SourceMesh, typename TargetMesh,
|
|
#ifndef DOXYGEN_RUNNING
|
|
typename T1, typename Tag1, typename Base1,
|
|
typename T2, typename Tag2, typename Base2
|
|
#else
|
|
typename NamedParameters1, typename NamedParameters2
|
|
#endif
|
|
>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm,
|
|
#ifndef DOXYGEN_RUNNING
|
|
const CGAL::Named_function_parameters<T1,Tag1,Base1>& np1,
|
|
const CGAL::Named_function_parameters<T2,Tag2,Base2>& np2
|
|
#else
|
|
const NamedParameters1& np1,
|
|
const NamedParameters2& np2
|
|
#endif
|
|
)
|
|
{
|
|
using parameters::choose_parameter;
|
|
using parameters::get_parameter;
|
|
internal::copy_face_graph(sm, tm,
|
|
CGAL::graph_has_property<SourceMesh,boost::halfedge_index_t>(),
|
|
choose_parameter(get_parameter(np1, internal_np::vertex_to_vertex_output_iterator),
|
|
impl::make_functor(get_parameter(np1, internal_np::vertex_to_vertex_map))),
|
|
choose_parameter(get_parameter(np1, internal_np::halfedge_to_halfedge_output_iterator),
|
|
impl::make_functor(get_parameter(np1, internal_np::halfedge_to_halfedge_map))),
|
|
choose_parameter(get_parameter(np1, internal_np::face_to_face_output_iterator),
|
|
impl::make_functor(get_parameter(np1, internal_np::face_to_face_map))),
|
|
choose_parameter(get_parameter(np1, internal_np::vertex_point),
|
|
get(vertex_point, sm)),
|
|
choose_parameter(get_parameter(np2, internal_np::vertex_point),
|
|
get(vertex_point, tm)));
|
|
}
|
|
|
|
template <typename SourceMesh, typename TargetMesh>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm)
|
|
{
|
|
copy_face_graph(sm, tm, parameters::all_default(), parameters::all_default());
|
|
}
|
|
|
|
template <typename SourceMesh, typename TargetMesh,
|
|
typename T, typename Tag, typename Base >
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm,
|
|
const CGAL::Named_function_parameters<T,Tag,Base>& np)
|
|
{
|
|
copy_face_graph(sm, tm, np, parameters::all_default());
|
|
}
|
|
|
|
#if !defined(DOXYGEN_RUNNING)
|
|
template <typename SourceMesh, typename TargetMesh,
|
|
typename V2V, typename H2H, typename F2F,
|
|
typename Src_vpm, typename Tgt_vpm>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm,
|
|
V2V v2v, H2H h2h, F2F f2f,
|
|
Src_vpm sm_vpm, Tgt_vpm tm_vpm )
|
|
{
|
|
internal::copy_face_graph(sm, tm,
|
|
CGAL::graph_has_property<SourceMesh,boost::halfedge_index_t>(),
|
|
v2v, h2h, f2f,
|
|
sm_vpm, tm_vpm);
|
|
}
|
|
|
|
|
|
template <typename SourceMesh, typename TargetMesh, typename V2V>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm, V2V v2v)
|
|
{ copy_face_graph(sm, tm, v2v, Emptyset_iterator(), Emptyset_iterator(),
|
|
get(vertex_point, sm), get(vertex_point, tm)); }
|
|
|
|
template <typename SourceMesh, typename TargetMesh, typename V2V, typename H2H>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm, V2V v2v, H2H h2h)
|
|
{ copy_face_graph(sm, tm, v2v, h2h, Emptyset_iterator(),
|
|
get(vertex_point, sm), get(vertex_point, tm)); }
|
|
|
|
template <typename SourceMesh, typename TargetMesh, typename V2V, typename H2H, typename F2F>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm, V2V v2v, H2H h2h, F2F f2f)
|
|
{ copy_face_graph(sm, tm, v2v, h2h, f2f,
|
|
get(vertex_point, sm), get(vertex_point, tm)); }
|
|
|
|
template <typename SourceMesh, typename TargetMesh, typename V2V, typename H2H, typename F2F, typename Src_vpm>
|
|
void copy_face_graph(const SourceMesh& sm, TargetMesh& tm, V2V v2v, H2H h2h, F2F f2f, Src_vpm sm_vpm)
|
|
{ copy_face_graph(sm, tm, v2v, h2h, f2f,
|
|
sm_vpm, get(vertex_point, tm)); }
|
|
#endif
|
|
|
|
} // namespace CGAL
|
|
|
|
#endif // CGAL_BOOST_GRAPH_COPY_FACE_GRAPH_H
|