1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
// Copyright (c) 2011 CNRS and LIRIS' Establishments (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL$
// $Id$
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Guillaume Damiand <guillaume.damiand@liris.cnrs.fr>
// Jérémy Girerd-Rey <jeremy.girerd-rey@etu.univ-lyon1.fr>
//
#include "typedefs.h"
// Smooth a vertex depending on the vertices of its incidents facets.
class Smooth_edge_pqq
{
public:
/** Constructor.
* @param alcc is the lcc to smooth
* @param amark is a mark designing old darts (i.e. darts not created during
* the subdivision step)
*/
Smooth_edge_pqq (LCC & alcc, LCC::size_type o):mlcc (alcc), old(o)
{
}
std::pair<Point_3, Dart_descriptor> operator () (Vertex & v) const
{
Dart_descriptor d = v.dart ();
// Old points aren't concerned.
if (mlcc.is_marked(d, old))
{ return std::make_pair(v.point(), d); }
std::vector<LCC::Point> facetsPoints;
facetsPoints.resize(0);
// We search barycenter point of incidents facets.
for (LCC::One_dart_per_incident_cell_range<1,0>::iterator it =
mlcc.one_dart_per_incident_cell<1,0>(d).begin();
it != mlcc.one_dart_per_incident_cell<1,0>(d).end(); ++it)
{
// If the vertex is on a border.
if (mlcc.is_free(it,2))
{ return std::make_pair(v.point(), d); }
// If we found barycenter of a facet.
if (!mlcc.is_marked(mlcc.opposite(it), old))
{
facetsPoints.push_back(mlcc.point(mlcc.opposite(it)));
}
}
// If we found more than two points we are on a vertice barycenter of a facet.
// They aren't concerned.
if (facetsPoints.size() > 2 || facetsPoints.size() < 2)
{ return std::make_pair(v.point(), d); }
// Average.
LCC::Vector averageFacetsV = LCC::Traits::Construct_vector()
( CGAL::ORIGIN, LCC::Point(0,0,0) );
for (unsigned int i=0; i < facetsPoints.size(); i++)
{
averageFacetsV = LCC::Traits::Construct_sum_of_vectors()
(averageFacetsV,
LCC::Traits::Construct_vector() (CGAL::ORIGIN, facetsPoints[i]));
}
averageFacetsV = LCC::Traits::Construct_scaled_vector()
( averageFacetsV, (1.0f/facetsPoints.size()) );
// Barycenter point.
LCC::Vector barycenterV = LCC::Traits::Construct_sum_of_vectors()
( LCC::Traits::Construct_vector() (CGAL::ORIGIN, v.point()), averageFacetsV );
barycenterV = LCC::Traits::Construct_scaled_vector()
( barycenterV, (1.0f/2.0f) );
std::pair<Point_3, Dart_descriptor> res=std::make_pair
(LCC::Traits::Construct_translated_point() (CGAL::ORIGIN, barycenterV), d);
return res;
}
private:
LCC & mlcc;
LCC::size_type old;
};
// Smooth an old vertex depending on the vertices of its incident facet and edge.
class Smooth_vertex_pqq
{
public:
/** Constructor.
* @param alcc is the lcc to smooth
* @param amark is a mark designing old darts (i.e. darts not created during
* the triangulation step)
*/
Smooth_vertex_pqq (LCC & alcc, LCC::size_type o):mlcc (alcc), old(o)
{
}
std::pair<Point_3, Dart_descriptor> operator () (Vertex & v) const
{
Dart_descriptor d = v.dart ();
// Just old points are concerned.
if (!mlcc.is_marked(d, old))
{ return std::make_pair(v.point(), d); }
unsigned int degree = 0;
std::vector<LCC::Point> edgesPoints;
edgesPoints.resize(0);
std::vector<LCC::Point> facetsPoints;
facetsPoints.resize(0);
// We search barycenter point of incidents facets, and incidents edges points.
for (LCC::One_dart_per_incident_cell_range<1,0>::iterator it =
mlcc.one_dart_per_incident_cell<1,0>(d).begin();
it != mlcc.one_dart_per_incident_cell<1,0>(d).end(); ++it)
{
// If the vertex is on a border
if (mlcc.is_free(it,2))
{ return std::make_pair(v.point(), d); }
// If incident isn't an old point, it's an edge point.
if (!mlcc.is_marked(mlcc.opposite(it), old))
{
edgesPoints.push_back (mlcc.point(mlcc.opposite(it)));
}
// We go find the "facet point" of incidents facet (barycenter of a facet).
facetsPoints.push_back (mlcc.point(mlcc.beta(mlcc.opposite(it), 0)));
++degree;
}
CGAL_assertion (facetsPoints.size() != 0 && edgesPoints.size() != 0);
if (facetsPoints.size() < 3 || edgesPoints.size() < 3 )
{ return std::make_pair(v.point(), d); }
// Average of incidents "edge points".
LCC::Vector averageEdgesV = LCC::Traits::Construct_vector()
(CGAL::ORIGIN, LCC::Point(0,0,0));
for (unsigned int i=0; i < edgesPoints.size(); i++)
{
averageEdgesV = LCC::Traits::Construct_sum_of_vectors()
( averageEdgesV,
LCC::Traits::Construct_vector() (CGAL::ORIGIN, edgesPoints[i]));
}
averageEdgesV = LCC::Traits::Construct_scaled_vector()
( averageEdgesV, 1.0f/ (LCC::FT) edgesPoints.size() );
// Average of incidents "facet points".
LCC::Vector averageFacetsV = LCC::Traits::Construct_vector()
(CGAL::ORIGIN, LCC::Point(0,0,0));
for (unsigned int i=0; i < facetsPoints.size(); i++)
{
averageFacetsV = LCC::Traits::Construct_sum_of_vectors()
( averageFacetsV,
LCC::Traits::Construct_vector() (CGAL::ORIGIN, facetsPoints[i]));
}
averageFacetsV = LCC::Traits::Construct_scaled_vector()
( averageFacetsV, (1.0f/ (LCC::FT) facetsPoints.size()) );
// COEFFICIENTS of PQQ - Catmull–Clark subdivision :
// point = ( averageFacets + 2*averageEdges + point*(degree-3) )/degree
averageFacetsV = LCC::Traits::Construct_scaled_vector()
( averageFacetsV, 1.0f/ (LCC::FT) degree);
averageEdgesV = LCC::Traits::Construct_scaled_vector()
( averageEdgesV, 2.0f/ (LCC::FT) degree);
LCC::Vector pointV = LCC::Traits::Construct_scaled_vector()
( LCC::Traits::Construct_vector() (CGAL::ORIGIN, v.point() ),
(LCC::FT) (degree-3)/ (LCC::FT) degree );
// New position of the old point.
LCC::Vector newPosition = LCC::Traits::Construct_sum_of_vectors()
( averageFacetsV, averageEdgesV);
newPosition = LCC::Traits::Construct_sum_of_vectors()
( newPosition, pointV);
std::pair<Point_3, Dart_descriptor> res=std::make_pair
(LCC::Traits::Construct_translated_point() (CGAL::ORIGIN, newPosition), d);
return res;
}
private:
LCC & mlcc;
LCC::size_type old;
};
// Subdivide each facet of the lcc by using pqq-subdivision.
void
subdivide_lcc_pqq (LCC & m)
{
if (m.number_of_darts () == 0)
return;
LCC::size_type old = m.get_new_mark ();
LCC::size_type treated = m.get_new_mark ();
m.negate_mark (old); // All the old darts are marked in O(1).
// 1) We subdivide each edge.
m.negate_mark (treated); // All the darts are marked in O(1).
for (LCC::Dart_range::iterator it (m.darts().begin ());
m.number_of_marked_darts (treated) > 0; ++it)
{
if (m.is_marked (it, treated))
{
// We unmark the darts of the facet to process only once dart/facet.
CGAL::unmark_cell < LCC, 1 > (m, it, treated);
// We insert barycenter in the middle of the edge.
m.insert_barycenter_in_cell<1>(it);
}
}
// 2) We create a barycenter point for each facets.
Dart_descriptor dc;
std::vector<Dart_descriptor> remove;
remove.resize(0);
m.negate_mark (treated); // All the darts are marked in O(1).
for (LCC::Dart_range::iterator it (m.darts().begin ());
m.number_of_marked_darts (treated) > 0; ++it)
{
if (m.is_marked (it, treated))
{
// We unmark the darts of the facet to process only once dart/facet.
CGAL::unmark_cell < LCC, 2 > (m, it, treated);
// We insert barycenter of the facet.
dc = m.insert_barycenter_in_cell<2>(it);
// We remove useless edges.
for (LCC::One_dart_per_incident_cell_range<1,0>::iterator it2 =
m.one_dart_per_incident_cell<1,0>(dc).begin();
it2 != m.one_dart_per_incident_cell<1,0>(dc).end(); ++it2)
{
// If the edge join the center and a corner.
// We remove the edge.
if( m.is_marked(m.beta(it2,1), old) )
{
remove.push_back(it2);
}
}
// Remove edges.
for (std::vector <Dart_descriptor>::iterator dit = remove.begin ();
dit != remove.end (); ++dit)
{
CGAL_assertion( (m.is_removable<1>(*dit)) );
m.remove_cell<1>(*dit);
}
remove.resize(0);
// CGAL_assertion( m.is_valid() );
}
}
m.negate_mark (treated);
CGAL_assertion (m.is_whole_map_marked (treated));
m.free_mark (treated);
// 3) Smooth old points.
std::vector<std::pair<Point_3, Dart_descriptor> > old_vertices; // smooth the old vertices.
old_vertices.reserve (m.number_of_attributes<0> ()); // get intermediate space.
std::transform (m.vertex_attributes().begin(),
m.vertex_attributes().end(),
std::back_inserter(old_vertices),
Smooth_vertex_pqq(m, old));
// Update.
for (std::vector<std::pair<Point_3, Dart_descriptor> >::iterator
vit=old_vertices.begin(); vit!=old_vertices.end(); ++vit)
{
m.point(vit->second)=vit->first;
}
// 4) Smooth new edges points.
std::vector<std::pair<Point_3, Dart_descriptor> > vertices; // smooth the old vertices.
vertices.reserve(m.number_of_attributes<0>()); // get intermediate space.
std::transform (m.vertex_attributes().begin(),
m.vertex_attributes().end(),
std::back_inserter(vertices),
Smooth_edge_pqq(m, old));
// Update.
for (std::vector<std::pair<Point_3, Dart_descriptor> >::iterator
vit=vertices.begin(); vit!=vertices.end(); ++vit)
{
m.point(vit->second)=vit->first;
}
m.unmark_all (old);
m.free_mark (old);
CGAL_postcondition ( m.is_valid ());
}
|