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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
|
// Copyright (c) 1997-2000 Max-Planck-Institute Saarbruecken (Germany).
// 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
// 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: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/next/Nef_2/include/CGAL/Nef_2/PM_overlayer.h $
// $Id: PM_overlayer.h 67531 2012-01-31 15:11:10Z lrineau $
//
//
// Author(s) : Michael Seel <seel@mpi-sb.mpg.de>
#ifndef CGAL_PM_OVERLAYER_H
#define CGAL_PM_OVERLAYER_H
#include <CGAL/basic.h>
#include <CGAL/Unique_hash_map.h>
#include <CGAL/Union_find.h>
#include <CGAL/Nef_2/Segment_overlay_traits.h>
#include <CGAL/Nef_2/geninfo.h>
#undef CGAL_NEF_DEBUG
#define CGAL_NEF_DEBUG 13
#include <CGAL/Nef_2/debug.h>
#ifndef CGAL_USE_LEDA
#define LEDA_MEMORY(t)
#endif
namespace CGAL {
template <typename PMD, typename I, typename DA>
struct PMO_from_segs {
typedef PMD Decorator;
typedef typename Decorator::Vertex_handle Vertex_handle;
typedef typename Decorator::Halfedge_handle Halfedge_handle;
typedef typename Decorator::Point Point;
const Decorator& G;
DA& D;
PMO_from_segs(const Decorator& Gi, DA& Di) :
G(Gi),D(Di) {}
Vertex_handle new_vertex(const Point& p)
{ Vertex_handle v = G.new_vertex(p);
geninfo<Halfedge_handle>::create(G.info(v));
return v;
}
void link_as_target_and_append(Vertex_handle v, Halfedge_handle e)
{ G.link_as_target_and_append(v,e); }
Halfedge_handle new_halfedge_pair_at_source(Vertex_handle v)
{ Halfedge_handle e =
G.new_halfedge_pair_at_source(v,Decorator::BEFORE);
return e;
}
void supporting_segment(Halfedge_handle e, I it) const
{ D.supporting_segment(e,it); }
void trivial_segment(Vertex_handle v, I it) const
{ D.trivial_segment(v,it); }
void starting_segment(Vertex_handle v, I it) const
{ D.starting_segment(v,it); }
void passing_segment(Vertex_handle v, I it) const
{ D.passing_segment(v,it); }
void ending_segment(Vertex_handle v, I it) const
{ D.ending_segment(v,it); }
void halfedge_below(Vertex_handle v, Halfedge_handle e) const
{ geninfo<Halfedge_handle>::access(G.info(v)) = e; }
Halfedge_handle halfedge_below(Vertex_handle v) const
{ return geninfo<Halfedge_handle>::access(G.info(v)); }
void clear_temporary_vertex_info() const
{ Vertex_handle v;
for(v = G.vertices_begin(); v!= G.vertices_end(); ++v)
geninfo<Halfedge_handle>::clear(G.info(v));
}
}; // PMO_from_segs
template <typename PMD, typename IT, typename INFO>
struct PMO_from_pm {
typedef PMD Decorator;
typedef typename PMD::Const_decorator Const_decorator;
typedef typename Decorator::Vertex_handle Vertex_handle;
typedef typename Decorator::Halfedge_handle Halfedge_handle;
typedef typename Decorator::Vertex_const_handle Vertex_const_handle;
typedef typename Decorator::Halfedge_const_handle Halfedge_const_handle;
typedef typename Decorator::Point Point;
const Decorator& G;
const Const_decorator* pGI[2];
CGAL::Unique_hash_map<IT,INFO>& M;
PMO_from_pm(const Decorator& Gi,
const Const_decorator* pG0,
const Const_decorator* pG1,
CGAL::Unique_hash_map<IT,INFO>& Mi) : G(Gi),M(Mi)
{ pGI[0]=pG0; pGI[1]=pG1; }
Vertex_handle new_vertex(const Point& p) const
{ Vertex_handle v = G.new_vertex(p);
G.assoc_info(v);
return v;
}
void link_as_target_and_append(Vertex_handle v, Halfedge_handle e) const
{ G.link_as_target_and_append(v,e); }
Halfedge_handle new_halfedge_pair_at_source(Vertex_handle v) const
{ Halfedge_handle e =
G.new_halfedge_pair_at_source(v,Decorator::BEFORE);
G.assoc_info(e);
return e;
}
void halfedge_below(Vertex_handle v, Halfedge_handle e) const
{ G.halfedge_below(v) = e; }
void supporting_segment(Halfedge_handle e, IT it) const
{ INFO& si = M[it];
CGAL_assertion( si.e != Halfedge_const_handle() );
G.supp_halfedge(e,si.i) = si.e;
G.is_forward(e) = true;
}
void trivial_segment(Vertex_handle v, IT it) const
{ INFO& si = M[it];
CGAL_assertion( si.v != Vertex_const_handle() );
G.supp_vertex(v,si.i) = si.v;
}
void starting_segment(Vertex_handle v, IT it) const
{ INFO& si = M[it];
G.supp_vertex(v,si.i) = pGI[si.i]->source(si.e);
}
void ending_segment(Vertex_handle v, IT it) const
{ INFO& si = M[it];
G.supp_vertex(v,si.i) = pGI[si.i]->target(si.e);
}
void passing_segment(Vertex_handle v, IT it) const
{ INFO& si = M[it];
G.supp_halfedge(v,si.i) = si.e;
}
Halfedge_handle halfedge_below(Vertex_handle v) const
{ return G.halfedge_below(v); }
}; // PMO_from_pm
/*{\Moptions print_title=yes }*/
/*{\Msubst
PM_decorator_#PMD
Geometry_#GEO
}*/
/*{\Manpage {PM_overlayer}{PMD,GEO}{Plane Map Overlay}{O}}*/
template <typename PM_decorator_, typename Geometry_>
class PM_overlayer : public PM_decorator_ {
typedef PM_decorator_ Base;
typedef PM_overlayer<PM_decorator_,Geometry_> Self;
const Geometry_& K; // geometry reference
/*{\Mdefinition An instance |\Mvar| of data type |\Mname| is a
decorator object offering plane map overlay calculation. Overlay is
either calculated from two plane maps or from a set of segments. The
result is stored in a plane map |P| that carries the geometry and the
topology of the overlay.
The two template parameters allow to adapt the overlay calculation
to different scenarios. The template parameter |PM_decorator_| has to
be a model conforming to our plane map decorator concept
|PMDecorator|. The concept describes the interface how the
topological information stored in |P| can be extracted. The geometry
|Geometry_| has to be a model conforming to the concept
|OverlayerGeometry_2|.
The overlay of a set of segments $S$ is stored in a plane map $P =
(V,E,F)$. Vertices are either the endpoints of segments (trivial
segments are allowed) or the result of a non-degenerate internal
intersection of two segments. Between two vertices there is an edge if
there is a segment that supports the straight line embedding of $e$ and
if there is no vertex in the relative interior of the embedding of $e$.
The faces refer to the maximal connected open point sets of the
planar subdivision implied by the embedding of the vertices and edges.
Faces are bounded by possibly several face cycles\footnote{For the
definition of plane maps and their concepts see the manual page of
|PMConstDecorator|.} including isolated vertices. The overlay process
in the method |create| creates the objects, the topology of the result
and allows to link the plane map objects to input segments by means of
a data accessor. The method starts from zero- and one-dimensional
geometric objects in $S$ and produces a plane map |P| where each point
of the plane can be assigned to an object (vertex, edge, or face) of
|P|.
The overlay of two plane maps $P_i = (V_i, E_i, F_i)$ has the
additional aspect that we already start from two planar subdivisions.
We use the index $i=0,1$ defining the reference to $P_i$, unindexed
variables refer to the resulting plane map $P$. The $1$-skeleta of
the two maps subdivide the edges and faces of the complementary
structure into smaller units. This means vertices and edges of $P_i$
can split edges of $P_{1-i}$ and face cycles of $P_i$ subdivide faces
of $P_{1-i}$. The 1-skeleton $P'$ of $P$ is defined by the overlay of
the embedding of the 1-skeleta of $P_0$ and $P_1$ (Take a trivial
segment for each vertex and a segment for each edge and use the
overlay definition of a set of segments above). The faces of $P$ refer
to the maximal connected open point sets of the planar subdivision
implied by the embedding of $P'$. Each object from the output tuple
$(V,E,F)$ has a \emph{supporting} object $u_i$ in each of the two
input structures. Imagine the two maps to be transparencies, which we
stack. Then each point of the plane is covered by an object from each
of the input structures. This support relation from the input
structures to the output structure defines an information flow. Each
supporting object $u_i$ of $u$ $(i=0,1)$ carries an attribute
$|mark|(u_i)$. After the subdivision operation this attribute
is associated to the output object $u$ by $|mark|(u,i)$.}*/
/*{\Mgeneralization PM_decorator_}*/
public:
/*{\Mtypes 8}*/
typedef PM_decorator_ Decorator;
/*{\Mtypemember the plane map decorator |PM_decorator_|.}*/
typedef typename Decorator::Plane_map Plane_map;
/*{\Mtypemember the plane map type decorated by |PM_decorator_|.}*/
typedef Geometry_ Geometry;
/*{\Mtypemember the geometry kernel |Geometry_|.}*/
typedef typename Geometry::Point_2 Point;
/*{\Mtypemember the point type of the geometric kernel,
\precond |Point| equals |Plane_map::Point|.}*/
typedef typename Geometry::Segment_2 Segment;
/*{\Mtypemember the segment type of the geometric kernel.}*/
typedef typename Decorator::Mark Mark;
/*{\Mtypemember the attribute type of plane map objects.}*/
typedef typename Decorator::Base Const_decorator;
typedef typename Decorator::Halfedge_handle Halfedge_handle;
typedef typename Decorator::Vertex_handle Vertex_handle;
typedef typename Decorator::Face_handle Face_handle;
typedef typename Decorator::Vertex_iterator Vertex_iterator;
typedef typename Decorator::Halfedge_iterator Halfedge_iterator;
typedef typename Decorator::Face_iterator Face_iterator;
typedef typename Decorator::Halfedge_const_handle Halfedge_const_handle;
typedef typename Decorator::Vertex_const_handle Vertex_const_handle;
typedef typename Decorator::Face_const_handle Face_const_handle;
typedef typename Decorator::Halfedge_const_iterator Halfedge_const_iterator;
typedef typename Decorator::Vertex_const_iterator Vertex_const_iterator;
typedef typename Decorator::Face_const_iterator Face_const_iterator;
typedef typename Decorator::Halfedge_around_vertex_circulator
Halfedge_around_vertex_circulator;
typedef typename Decorator::Halfedge_around_face_circulator
Halfedge_around_face_circulator;
typedef typename Decorator::Hole_iterator Hole_iterator;
typedef typename Decorator::Isolated_vertex_iterator Isolated_vertex_iterator;
using Base::clear;
using Base::vertices_begin;
using Base::vertices_end;
using Base::halfedges_begin;
using Base::halfedges_end;
using Base::faces_begin;
using Base::faces_end;
using Base::number_of_vertices;
using Base::number_of_halfedges;
using Base::number_of_faces;
using Base::new_vertex;
using Base::new_face;
using Base::target;
using Base::source;
using Base::point;
using Base::next;
using Base::previous;
using Base::twin;
using Base::info;
using Base::link_as_outer_face_cycle;
using Base::link_as_isolated_vertex;
using Base::link_as_hole;
using Base::face;
using Base::set_face;
using Base::is_isolated;
using Base::first_out_edge;
using Base::halfedge;
using Base::clear_face_cycle_entries;
using Base::is_closed_at_source;
using Base::delete_halfedge_pair;
using Base::delete_face;
using Base::set_halfedge;
using Base::set_hole;
using Base::delete_vertex_only;
using Base::set_isolated_vertex;
using Base::has_outdeg_two;
using Base::merge_halfedge_pairs_at_target;
// C++ is really friendly:
#define USECMARK(t) const Mark& mark(t h) const { return Base::mark(h); }
#define USEMARK(t) Mark& mark(t h) const { return Base::mark(h); }
USEMARK(Vertex_handle)
USEMARK(Halfedge_handle)
USEMARK(Face_handle)
USECMARK(Vertex_const_handle)
USECMARK(Halfedge_const_handle)
USECMARK(Face_const_handle)
#undef USEMARK
#undef USECMARK
enum Creation {POLYGON=0, POLYLINE=1};
/*{\Moperations 1.1 1}*/
struct Seg_info { // to transport information from input to output
Halfedge_const_handle e;
Vertex_const_handle v;
int i;
Seg_info() : i(-1) {}
Seg_info(Halfedge_const_handle e_, int i_)
{ e=e_; i=i_; }
Seg_info(Vertex_const_handle v_, int i_)
{ v=v_; i=i_; }
Seg_info(const Seg_info& si)
{ e=si.e; v=si.v; i=si.i; }
Seg_info& operator=(const Seg_info& si)
{ e=si.e; v=si.v; i=si.i; return *this; }
LEDA_MEMORY(Seg_info)
};
typedef std::list<Segment> Seg_list;
typedef typename Seg_list::const_iterator Seg_iterator;
typedef std::pair<Seg_iterator,Seg_iterator> Seg_it_pair;
/*{\Mcreation 6}*/
PM_overlayer(Plane_map& P, const Geometry& g = Geometry()) :
/*{\Mcreate |\Mvar| is a decorator object manipulating |P|.}*/
Base(P), K(g) {}
template <typename Forward_iterator, typename Object_data_accessor>
void create(Forward_iterator start, Forward_iterator end,
Object_data_accessor& A, Creation cr = POLYGON) const
/*{\Mop produces in |P| the plane map consistent with the overlay
of the segments from the iterator range |[start,end)|. The data accessor
|A| allows to initialize created vertices and edges with respect to the
segments in the iterator range. |A| requires the following methods:\\
[[void supporting_segment(Halfedge_handle e, Forward_iterator it)]]\\
[[void trivial_segment(Vertex_handle v, Forward_iterator it)]]\\
[[void starting_segment(Vertex_handle v, Forward_iterator it)]]\\
[[void passing_segment(Vertex_handle v, Forward_iterator it)]]\\
[[void ending_segment(Vertex_handle v, Forward_iterator it)]]\\
where |supporting_segment| is called for each non-trivial segment |*it|
supporting a newly created edge |e|, |trivial_segment| is called for
each trivial segment |*it| supporting a newly created vertex |v|, and
the three last operations are called for each non-trivial segment
|*it| starting at/passing through/ending at the embedding of a newly
created vertex |v|.
\precond |Forward_iterator| has value type |Segment|.}*/
{
CGAL_NEF_TRACEN("creating from iterator range");
CGAL_assertion(cr == POLYGON || cr == POLYLINE);
typedef PMO_from_segs<Self,Forward_iterator,Object_data_accessor>
Output_from_segments;
typedef Segment_overlay_traits<
Forward_iterator, Output_from_segments, Geometry> seg_overlay;
typedef generic_sweep< seg_overlay > seg_overlay_sweep;
typedef typename seg_overlay::INPUT input_range;
Output_from_segments Out(*this, A);
seg_overlay_sweep SOS( input_range(start, end), Out, K);
SOS.sweep();
if(cr==POLYGON)
create_face_objects(Out);
else
create_face_objects_pl(Out);
Out.clear_temporary_vertex_info();
}
void subdivide(const Plane_map& P0, const Plane_map& P1) const
/*{\Mop constructs the overlay of the plane maps |P0| and |P1| in
|P|, where all objects (vertices, halfedges, faces) of |P| are
\emph{enriched} by the marks of the supporting objects of the two
input structures: e.g. let |v| be a vertex supported by a node |v0| in
|P0| and by a face |f1| in |P1| and |D0|, |D1| be decorators of
type |PM_decorator| on |P0|,|P1|. Then |\Mvar.mark(v,0) = D0.mark(v0)|
and |\Mvar.mark(v,1) = D1.mark(f1)|.}*/
{
Const_decorator PI[2];
PI[0] = Const_decorator(P0); PI[1] = Const_decorator(P1);
Seg_list Segments; int i;
CGAL::Unique_hash_map<Seg_iterator,Seg_info> From;
for (i=0; i<2; ++i) {
Vertex_const_iterator v;
for(v = PI[i].vertices_begin(); v != PI[i].vertices_end(); ++v)
if ( PI[i].is_isolated(v) ) {
Segments.push_back(segment(PI[i],v));
From[--Segments.end()] = Seg_info(v,i);
}
Halfedge_const_iterator e;
for(e = PI[i].halfedges_begin(); e != PI[i].halfedges_end(); ++e)
if ( is_forward_edge(PI[i],e) ) {
Segments.push_back(segment(PI[i],e));
From[--Segments.end()] = Seg_info(e,i);
}
}
typedef PMO_from_pm<Self,Seg_iterator,Seg_info> Output_from_plane_maps;
typedef Segment_overlay_traits<
Seg_iterator, Output_from_plane_maps, Geometry> pm_overlay;
typedef generic_sweep< pm_overlay > pm_overlay_sweep;
Output_from_plane_maps Out(*this,&PI[0],&PI[1],From);
pm_overlay_sweep SOS(Seg_it_pair(Segments.begin(),Segments.end()),Out,K);
SOS.sweep();
create_face_objects(Out);
CGAL_NEF_TRACEN("transfering marks");
Face_iterator f = this->faces_begin(); assoc_info(f);
for (i=0; i<2; ++i) mark(f,i) = PI[i].mark(PI[i].faces_begin());
Vertex_iterator v, vend = this->vertices_end();
for (v = this->vertices_begin(); v != vend; ++v) {
CGAL_NEF_TRACEN("mark at "<<PV(v));
Halfedge_handle e_below = halfedge_below(v);
Mark m_below[2];
if ( e_below != Halfedge_handle() ) {
for (int i=0; i<2; ++i) {
m_below[i] = incident_mark(e_below,i);
}
} else { // e_below does not exist
for (int i=0; i<2; ++i)
m_below[i] = PI[i].mark(PI[i].faces_begin());
}
for (i=0; i<2; ++i)
if ( supp_halfedge(v,i) != Halfedge_const_handle() ) {
mark(v,i) = PI[i].mark(supp_halfedge(v,i));
} else if ( supp_vertex(v,i) != Vertex_const_handle() ) {
mark(v,i) = PI[i].mark(supp_vertex(v,i));
} else {
mark(v,i) = m_below[i];
}
if ( is_isolated(v) ) continue;
Halfedge_around_vertex_circulator
e(first_out_edge(v)), hend(e);
CGAL_For_all(e,hend) {
if ( is_forward(e) ) {
CGAL_NEF_TRACEN(" halfedge "<<PE(e));
Halfedge_const_handle ei;
bool supported;
for (int i=0; i<2; ++i) {
supported = ( supp_halfedge(e,i) != Halfedge_const_handle() );
if ( supported ) {
ei = supp_halfedge(e,i);
CGAL_NEF_TRACEN(" supp halfedge "<<i<<" "<<PE(ei));
incident_mark(twin(e),i) =
PI[i].mark(PI[i].face(PI[i].twin(ei)));
mark(e,i) = PI[i].mark(ei);
incident_mark(e,i) = m_below[i] =
PI[i].mark(PI[i].face(ei));
} else { // no support from input PI[i]
incident_mark(twin(e),i) = mark(e,i) = incident_mark(e,i) =
m_below[i];
}
}
} else break;
}
}
for (f = ++this->faces_begin(); f != this->faces_end(); ++f) { // skip first face
assoc_info(f);
for (i=0; i<2; ++i) mark(f,i) = incident_mark(halfedge(f),i);
}
}
template <typename Selection>
void select(Selection& predicate) const
/*{\Mop sets the marks of all objects according to the selection
predicate |predicate|. |Selection| has to be a function object type
with a function operator\\ [[Mark operator()(Mark m0, Mark m1)]]\\ For
each object |u| of |P| enriched by the marks of the supporting objects
according to the previous procedure |subdivide|, after this operation
|\Mvar.mark(u) = predicate ( \Mvar.mark(u,0),\Mvar.mark(u,1) )|. The
additional marks are invalidated afterwards. }*/
{
Vertex_iterator vit = this->vertices_begin(),
vend = this->vertices_end();
for( ; vit != vend; ++vit) {
mark(vit) = predicate(mark(vit,0),mark(vit,1));
discard_info(vit);
}
Halfedge_iterator hit = this->halfedges_begin(),
hend = this->halfedges_end();
for(; hit != hend; ++(++hit)) {
mark(hit) = predicate(mark(hit,0),mark(hit,1));
discard_info(hit);
}
Face_iterator fit = this->faces_begin(),
fend = this->faces_end();
for(; fit != fend; ++fit) {
mark(fit) = predicate(mark(fit,0),mark(fit,1));
discard_info(fit);
}
}
template <typename Keep_edge>
void simplify(const Keep_edge& keep) const
/*{\Mop simplifies the structure of |P| according to the marks of
its objects. An edge |e| separating two faces |f1| and |f2| and equal
marks |mark(e) == mark(f1) == mark(f2)| is removed and the faces are
unified. An isolated vertex |v| in a face |f| with |mark(v)==mark(f)|
is removed. A vertex |v| with outdegree two, two collinear out-edges
|e1|,|e2| and equal marks |mark(v) == mark(e1) == mark(e2)| is removed
and the edges are unified. The data accessor |keep| requires the function
call operator\\[[bool operator()(Halfedge_handle e)]]\\that allows to
avoid the simplification for edge pairs referenced by |e|.}*/
{
CGAL_NEF_TRACEN("simplifying");
typedef typename CGAL::Union_find<Face_handle>::handle Union_find_handle;
CGAL::Unique_hash_map< Face_iterator, Union_find_handle> Pitem;
CGAL::Union_find<Face_handle> unify_faces;
Face_iterator f, fend = this->faces_end();
for (f = this->faces_begin(); f!= fend; ++f) {
Pitem[f] = unify_faces.make_set(f);
clear_face_cycle_entries(f);
}
Halfedge_iterator e = this->halfedges_begin(), en,
eend = this->halfedges_end();
for(; en=e, ++(++en), e != eend; e=en) {
if ( keep(e) ) continue;
if ( mark(e) == mark(face(e)) &&
mark(e) == mark(face(twin(e))) ) {
CGAL_NEF_TRACEN("deleting "<<PE(e));
if ( !unify_faces.same_set(Pitem[face(e)],
Pitem[face(twin(e))]) ) {
unify_faces.unify_sets( Pitem[face(e)],
Pitem[face(twin(e))] );
CGAL_NEF_TRACEN("unioning disjoint faces");
}
if ( is_closed_at_source(e) ) set_face(source(e),face(e));
if ( is_closed_at_source(twin(e)) ) set_face(target(e),face(e));
delete_halfedge_pair(e);
}
}
CGAL::Unique_hash_map<Halfedge_handle,bool> linked(false);
for (e = this->halfedges_begin(); e != eend; ++e) {
if ( linked[e] ) continue;
Halfedge_around_face_circulator hfc(e),hend(hfc);
Halfedge_handle e_min = e;
Face_handle f = *(unify_faces.find(Pitem[face(e)]));
CGAL_For_all(hfc,hend) {
set_face(hfc,f);
if(target(hfc) == target(e_min)) {
Point p1 = point(source(hfc)),
p2 = point(target(hfc)),
p3 = point(target(next(hfc)));
if (!K.left_turn(p1,p2,p3) )
e_min = hfc;
} else if ( K.compare_xy(point(target(hfc)), point(target(e_min))) < 0 )
e_min = hfc;
linked[hfc]=true;
}
Point p1 = point(source(e_min)),
p2 = point(target(e_min)),
p3 = point(target(next(e_min)));
if ( K.orientation(p1,p2,p3) > 0 ) set_halfedge(f,e_min); // outer
else set_hole(f,e_min); // store as inner
}
Vertex_iterator v, vn, vend = this->vertices_end();
for(v = this->vertices_begin(); v != vend; v=vn) { CGAL_NEF_TRACEN("at vertex "<<PV(v));
vn=v; ++vn;
if ( is_isolated(v) ) {
if ( mark(v) == mark(face(v)) ) delete_vertex_only(v);
else set_isolated_vertex(face(v),v);
} else { // v not isolated
Halfedge_handle e2 = first_out_edge(v), e1 = previous(e2);
Point p1 = point(source(e1)), p2 = point(v),
p3 = point(target(e2));
if ( has_outdeg_two(v) &&
mark(v) == mark(e1) && mark(v) == mark(e2) &&
(K.orientation(p1,p2,p3) == 0) )
merge_halfedge_pairs_at_target(e1);
}
}
Face_iterator fn;
for (f = this->faces_begin(); f != fend; f=fn) {
fn=f; ++fn;
Union_find_handle pit = Pitem[f];
if ( unify_faces.find(pit) != pit ) delete_face(f);
}
}
struct vertex_info {
Mark m[2];
Vertex_const_handle v_supp[2];
Halfedge_const_handle e_supp[2];
Halfedge_handle e_below;
vertex_info()
{ v_supp[0]=v_supp[1]=Vertex_const_handle();
e_supp[0]=e_supp[1]=Halfedge_const_handle(); }
LEDA_MEMORY(vertex_info)
};
void assoc_info(Vertex_handle v) const
{ geninfo<vertex_info>::create(info(v)); }
void discard_info(Vertex_handle v) const
{ geninfo<vertex_info>::clear(info(v)); }
vertex_info& ginfo(Vertex_handle v) const
{ return geninfo<vertex_info>::access(info(v)); }
Mark& mark(Vertex_handle v, int i) const
{ return ginfo(v).m[i]; }
Vertex_const_handle& supp_vertex(Vertex_handle v, int i) const
{ return ginfo(v).v_supp[i]; }
Halfedge_const_handle& supp_halfedge(Vertex_handle v, int i) const
{ return ginfo(v).e_supp[i]; }
Halfedge_handle& halfedge_below(Vertex_handle v) const
{ return ginfo(v).e_below; }
struct halfedge_info {
Mark m[2];
Mark mf[2];
Halfedge_const_handle e_supp[2];
bool forw;
halfedge_info()
{ m[0]=m[1]=mf[0]=mf[1]=Mark();
e_supp[0]=e_supp[1]=Halfedge_const_handle();
forw=false; }
LEDA_MEMORY(halfedge_info)
};
void assoc_info(Halfedge_handle e) const
{ geninfo<halfedge_info>::create(info(e));
geninfo<halfedge_info>::create(info(twin(e))); }
void discard_info(Halfedge_handle e) const
{ geninfo<halfedge_info>::clear(info(e));
geninfo<halfedge_info>::clear(info(twin(e))); }
halfedge_info& ginfo(Halfedge_handle e) const
{ return geninfo<halfedge_info>::access(info(e)); }
Mark& mark(Halfedge_handle e, int i) const
// uedge information we store in the smaller one
{ if (&*e < &*(twin(e))) return ginfo(e).m[i];
else return ginfo(twin(e)).m[i]; }
Halfedge_const_handle& supp_halfedge(Halfedge_handle e, int i) const
// uedge information we store in the smaller one
{ if (&*e < &*(twin(e))) return ginfo(e).e_supp[i];
else return ginfo(twin(e)).e_supp[i]; }
Mark& incident_mark(Halfedge_handle e, int i) const
// biedge information we store in the halfedge
{ return ginfo(e).mf[i]; }
bool& is_forward(Halfedge_handle e) const
// biedge information we store in the halfedge
{ return ginfo(e).forw; }
struct face_info {
Mark m[2];
face_info() { m[0]=m[1]=Mark(); }
LEDA_MEMORY(face_info)
};
void assoc_info(Face_handle f) const
{ geninfo<face_info>::create(info(f)); }
void discard_info(Face_handle f) const
{ geninfo<face_info>::clear(info(f)); }
face_info& ginfo(Face_handle f) const
{ return geninfo<face_info>::access(info(f)); }
Mark& mark(Face_handle f, int i) const
{ return ginfo(f).m[i]; }
void clear_associated_info_of_all_objects() const
{
Vertex_iterator vit;
for (vit = this->vertices_begin(); vit != this->vertices_end(); ++vit)
discard_info(vit);
Halfedge_iterator hit;
for (hit = this->halfedges_begin(); hit != this->halfedges_end(); ++hit)
discard_info(hit);
Face_iterator fit;
for (fit = this->faces_begin(); fit != this->faces_end(); ++fit)
discard_info(fit);
}
template <typename Below_info>
void create_face_objects(const Below_info& D) const
{
CGAL_NEF_TRACEN("create_face_objects()");
CGAL::Unique_hash_map<Halfedge_handle,int> FaceCycle(-1);
std::vector<Halfedge_handle> MinimalHalfedge;
int i=0;
Halfedge_iterator e, eend = this->halfedges_end();
for (e=this->halfedges_begin(); e != eend; ++e) {
if ( FaceCycle[e] >= 0 ) continue; // already assigned
Halfedge_around_face_circulator hfc(e),hend(hfc);
Halfedge_handle e_min = e;
CGAL_NEF_TRACE("face cycle "<<i<<"\n");
CGAL_For_all(hfc,hend) {
FaceCycle[hfc]=i; // assign face cycle number
if(target(hfc) == target(e_min)) {
Point p1 = point(source(hfc)),
p2 = point(target(hfc)),
p3 = point(target(next(hfc)));
if (!K.left_turn(p1,p2,p3) )
e_min = hfc;
} else if ( K.compare_xy(point(target(hfc)), point(target(e_min))) < 0 )
e_min = hfc;
CGAL_NEF_TRACE(PE(hfc));
}
CGAL_NEF_TRACEN("");
MinimalHalfedge.push_back(e_min); ++i;
}
Face_handle f_outer = this->new_face();
for (int j=0; j<i; ++j) {
Halfedge_handle e = MinimalHalfedge[j];
CGAL_NEF_TRACEN(" face cycle "<<j);CGAL_NEF_TRACEN(" minimal halfedge "<<PE(e));
Point p1 = point(source(e)),
p2 = point(target(e)),
p3 = point(target(next(e)));
if ( K.left_turn(p1,p2,p3) ) { // left_turn => outer face cycle
CGAL_NEF_TRACEN(" creating new face object");
Face_handle f = this->new_face();
link_as_outer_face_cycle(f,e);
}
}
for (e = this->halfedges_begin(); e != eend; ++e) {
if ( face(e) != Face_handle() ) continue;
CGAL_NEF_TRACEN("linking hole "<<PE(e));
Face_handle f = determine_face(e,MinimalHalfedge,FaceCycle,D);
link_as_hole(f,e);
}
Vertex_iterator v, v_end = this->vertices_end();
for (v = this->vertices_begin(); v != v_end; ++v) {
if ( !is_isolated(v) ) continue;
Halfedge_handle e_below = D.halfedge_below(v);
if ( e_below == Halfedge_handle() )
link_as_isolated_vertex(f_outer,v);
else
link_as_isolated_vertex(face(e_below),v);
}
}
template <typename Below_info>
void create_face_objects_pl(const Below_info& D) const
{
CGAL_NEF_TRACEN("create_face_objects_pl()");
CGAL::Unique_hash_map<Halfedge_handle,int> FaceCycle(-1);
std::vector<Halfedge_handle> MinimalHalfedge;
int i=0;
Halfedge_iterator e, eend = this->halfedges_end();
for (e=this->halfedges_begin(); e != eend; ++e) {
if ( FaceCycle[e] >= 0 ) continue; // already assigned
Halfedge_around_face_circulator hfc(e),hend(hfc);
Halfedge_handle e_min = e;
CGAL_NEF_TRACE("face cycle "<<i<<"\n");
CGAL_For_all(hfc,hend) {
FaceCycle[hfc]=i; // assign face cycle number
if(target(hfc) == target(e_min)) {
Point p1 = point(source(hfc)),
p2 = point(target(hfc)),
p3 = point(target(next(hfc)));
if (!K.left_turn(p1,p2,p3) )
e_min = hfc;
} else if ( K.compare_xy(point(target(hfc)), point(target(e_min))) < 0 )
e_min = hfc;
CGAL_NEF_TRACE(PE(hfc));
}
CGAL_NEF_TRACEN("");
MinimalHalfedge.push_back(e_min); ++i;
}
(void)/* Face_handle f_outer = */ this->new_face();
for (int j=0; j<i; ++j) {
Halfedge_handle e = MinimalHalfedge[j];
CGAL_NEF_TRACEN(" face cycle "<<j);CGAL_NEF_TRACEN(" minimal halfedge "<<PE(e));
Point p1 = point(source(e)),
p2 = point(target(e)),
p3 = point(target(next(e)));
if ( K.left_turn(p1,p2,p3) ) { // left_turn => outer face cycle
CGAL_NEF_TRACEN(" creating new face object");
Halfedge_around_face_circulator hfc(e),hend(hfc);
Face_handle f = this->new_face();
link_as_outer_face_cycle(f,e);
}
}
for (e = this->halfedges_begin(); e != eend; ++e) {
if ( face(e) != Face_handle() ) continue;
CGAL_NEF_TRACEN("linking hole "<<PE(e));
Face_handle f = determine_face(e,MinimalHalfedge,FaceCycle,D);
link_as_hole(f,e);
}
}
template <typename Below_info>
Face_handle determine_face(Halfedge_handle e,
const std::vector<Halfedge_handle>& MinimalHalfedge,
const CGAL::Unique_hash_map<Halfedge_handle,int>& FaceCycle,
const Below_info& D) const
{ CGAL_NEF_TRACEN("determine_face "<<PE(e));
Halfedge_handle e_min = MinimalHalfedge[FaceCycle[e]];
Halfedge_handle e_below = D.halfedge_below(target(e_min));
if ( e_below == Halfedge_handle() ) // below is nirwana
return this->faces_begin();
Face_handle f = face(e_below);
if (f != Face_handle()) return f; // has face already
f = determine_face(e_below, MinimalHalfedge, FaceCycle,D);
link_as_hole(f,e_below);
return f;
}
Segment segment(const Const_decorator& N,
Halfedge_const_handle e) const
{ return K.construct_segment(
N.point(N.source(e)),N.point(N.target(e))); }
Segment segment(const Const_decorator& N,
Vertex_const_handle v) const
{ Point p = N.point(v);
return K.construct_segment(p,p); }
bool is_forward_edge(const Const_decorator& N,
Halfedge_const_iterator hit) const
{ Point p1 = N.point(N.source(hit));
Point p2 = N.point(N.target(hit));
return (K.compare_xy(p1,p2) < 0); }
void assert_type_precondition() const
{ typename PM_decorator_::Point p1; Point p2;
assert_equal_types(p1,p2); }
}; // PM_overlayer<PM_decorator_,Geometry_>
} //namespace CGAL
#endif // CGAL_PM_OVERLAYER_H
|