snc_k3_tree_traits.h
来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 382 行
H
382 行
#line 934 "k3_tree.nw"// Copyright (c) 1997-2000 Max-Planck-Institute Saarbruecken (Germany).// All rights reserved.//// This file is part of CGAL (www.cgal.org); you may redistribute it under// the terms of the Q Public License version 1.0.// See the file LICENSE.QPL distributed with CGAL.//// 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.//// $Source: /CVSROOT/CGAL/Packages/Nef_3/include/CGAL/Nef_3/SNC_k3_tree_traits.h,v $// $Revision: 1.11.4.1 $ $Date: 2004/12/06 15:33:56 $// $Name: $//// Author(s) : Miguel Granados <granados@mpi-sb.mpg.de>#ifndef SNC_K3_TREE_TRAITS_H#define SNC_K3_TREE_TRAITS_H#include <CGAL/Nef_3/Bounding_box_3.h>#include <list>#define CGAL_for_each( i, C) for( i = C.begin(); i != C.end(); ++i)CGAL_BEGIN_NAMESPACEtemplate <class SNC_decorator>class Side_of_plane {public: typedef typename SNC_decorator::SNC_structure SNC_structure; typedef typename SNC_decorator::Decorator_traits Decorator_traits; typedef typename Decorator_traits::Vertex_handle Vertex_handle; typedef typename Decorator_traits::Halfedge_handle Halfedge_handle; typedef typename Decorator_traits::Halffacet_handle Halffacet_handle; typedef typename SNC_structure::Halffacet_triangle_handle Halffacet_triangle_handle; typedef typename SNC_structure::Object_handle Object_handle; typedef typename Decorator_traits::Halffacet_cycle_iterator Halffacet_cycle_iterator; typedef typename Decorator_traits::SHalfedge_around_facet_circulator SHalfedge_around_facet_circulator; typedef typename Decorator_traits::SHalfedge_handle SHalfedge_handle; typedef typename SNC_decorator::Kernel Kernel; typedef typename Kernel::Point_3 Point_3; typedef typename Kernel::Segment_3 Segment_3; typedef typename Kernel::Plane_3 Plane_3; typedef typename Kernel::Triangle_3 Triangle_3; typedef typename Kernel::Vector_3 Vector_3; typedef typename Kernel::RT RT; Oriented_side operator()( const Plane_3& pl, Object_handle o); Oriented_side operator()( const Plane_3& pl, Vertex_handle v); Oriented_side operator()( const Plane_3& pl, Halfedge_handle e); Oriented_side operator()( const Plane_3& pl, Halffacet_handle f); Oriented_side operator()( const Plane_3& pl, Halffacet_triangle_handle f); SNC_decorator D; Unique_hash_map<Vertex_handle, Oriented_side> OnSideMap;};template <class SNC_decorator>class Objects_bbox {public: typedef typename SNC_decorator::SNC_structure SNC_structure; typedef typename SNC_decorator::Decorator_traits Decorator_traits; typedef typename Decorator_traits::Vertex_handle Vertex_handle; typedef typename Decorator_traits::Halfedge_handle Halfedge_handle; typedef typename Decorator_traits::Halffacet_handle Halffacet_handle; typedef typename SNC_structure::Halffacet_triangle_handle Halffacet_triangle_handle; typedef typename SNC_structure::Object_handle Object_handle; typedef std::vector<Object_handle> Object_list; typedef typename Decorator_traits::Halffacet_cycle_iterator Halffacet_cycle_iterator; typedef typename Decorator_traits::SHalfedge_around_facet_circulator SHalfedge_around_facet_circulator; typedef typename Decorator_traits::SHalfedge_handle SHalfedge_handle; typedef typename SNC_decorator::Kernel Kernel; typedef typename Kernel::Plane_3 Plane_3; typedef typename Kernel::Segment_3 Segment_3; typedef typename Kernel::Point_3 Point_3; typedef typename Kernel::Triangle_3 Triangle_3; typedef typename Kernel::RT RT; typedef typename Kernel::Kernel_tag Kernel_tag; typedef Bounding_box_3<Kernel_tag,Kernel> Bounding_box_3; virtual Bounding_box_3 operator()(const Object_list& o) const; virtual Bounding_box_3 operator()(Object_handle o) const; virtual Bounding_box_3 operator()(Vertex_handle v) const; virtual Bounding_box_3 operator()(Halfedge_handle e) const; virtual Bounding_box_3 operator()(Halffacet_handle f) const; virtual Bounding_box_3 operator()(Halffacet_triangle_handle f) const; SNC_decorator D;};template <class Decorator>class SNC_k3_tree_traits {public: typedef Decorator SNC_decorator; typedef typename SNC_decorator::SNC_structure SNC_structure; typedef typename SNC_structure::Kernel Kernel; typedef typename SNC_structure::Infi_box Infimaximal_box; typedef typename SNC_decorator::Decorator_traits Decorator_traits; typedef typename Decorator_traits::Vertex_handle Vertex_handle; typedef typename Decorator_traits::Halfedge_handle Halfedge_handle; typedef typename Decorator_traits::Halffacet_handle Halffacet_handle; typedef typename SNC_structure::Halffacet_triangle_handle Halffacet_triangle_handle; typedef typename SNC_structure::Object_handle Object_handle; typedef std::vector<Object_handle> Object_list; typedef typename Kernel::Point_3 Point_3; typedef typename Kernel::Segment_3 Segment_3; typedef typename Kernel::Ray_3 Ray_3; typedef typename Kernel::Vector_3 Vector_3; typedef typename Kernel::Plane_3 Plane_3; typedef typename Kernel::Triangle_3 Triangle_3; typedef typename Kernel::Aff_transformation_3 Aff_transformation_3; typedef typename Kernel::RT RT; typedef typename Kernel::Kernel_tag Kernel_tag; typedef Bounding_box_3<Kernel_tag,Kernel> Bounding_box_3; typedef typename Kernel::Intersect_3 Intersect; typedef Objects_bbox<SNC_decorator> Objects_bbox; typedef Side_of_plane<SNC_decorator> Side_of_plane; Intersect intersect_object() const { return Intersect(); } Side_of_plane side_of_plane_object() const { return Side_of_plane(); } Objects_bbox objects_bbox_object() const { return Objects_bbox(); }};template <class SNC_decorator>Oriented_side Side_of_plane<SNC_decorator>::operator() ( const Plane_3& pl, Object_handle o) { Vertex_handle v; Halfedge_handle e; Halffacet_handle f; if( CGAL::assign( v, o)) return (*this)( pl, v); else if( CGAL::assign( e, o)) return (*this)( pl, e); else if( CGAL::assign( f, o)) return (*this)( pl, f); else { Halffacet_triangle_handle t; if( CGAL::assign( t, o)) return (*this)( pl, t); else CGAL_assertion_msg( 0, "wrong handle"); } return Oriented_side(); // never reached}template <class SNC_decorator>Oriented_side Side_of_plane<SNC_decorator>::operator()( const Plane_3& pl, Vertex_handle v) { if(!OnSideMap.is_defined(v)) OnSideMap[v] = pl.oriented_side(D.point(v)); return OnSideMap[v];}/* An edge is considered intersecting a plane if its endpoints lie on the plane or if they lie on diferent sides. Partial tangency is not considered as intersection, due the fact that a lower dimensional face (the vertex) should be already reported as an object intersecting the plane. */template <class SNC_decorator>Oriented_side Side_of_plane<SNC_decorator>::operator()( const Plane_3& pl, Halfedge_handle e) { if(!OnSideMap.is_defined(D.source(e))) OnSideMap[D.source(e)] = pl.oriented_side(D.point(D.source(e))); if(!OnSideMap.is_defined(D.target(e))) OnSideMap[D.target(e)] = pl.oriented_side(D.point(D.target(e))); Oriented_side src_side = OnSideMap[D.source(e)]; Oriented_side tgt_side = OnSideMap[D.target(e)]; if( src_side == tgt_side) return src_side; if( src_side == ON_ORIENTED_BOUNDARY) return tgt_side; if( tgt_side == ON_ORIENTED_BOUNDARY) return src_side; return ON_ORIENTED_BOUNDARY;}template <typename SNC_decorator>Oriented_sideSide_of_plane<SNC_decorator>::operator()( const Plane_3& pl, Halffacet_triangle_handle t) { bool on_positive_side = false, on_negative_side = false; Triangle_3 tr(t.get_triangle()); for( int i = 0; i < 3; ++i) { Oriented_side side = pl.oriented_side(tr[i]); if( side == ON_POSITIVE_SIDE) on_positive_side = true; else if( side == ON_NEGATIVE_SIDE) on_negative_side = true; } if( on_positive_side && on_negative_side) return ON_ORIENTED_BOUNDARY; if( !on_positive_side && !on_negative_side) return ON_ORIENTED_BOUNDARY; if( on_positive_side) { CGAL_assertion( !on_negative_side); return ON_POSITIVE_SIDE; } CGAL_assertion( on_negative_side); return ON_NEGATIVE_SIDE;}/* As for the edges, if a facet is tanget to the plane it is not considered as a interesection since lower dimensional faces, like the edges and vertices where the tangency occurrs, should be reported as the objects intersecting the plane. So, an intersection is reported if all vertices of the facet lie on plane, for which it is only necessary to check three vertices, or if the facet has vertices on both sides of the plane, so the intersection is known as far as two vertices located on different sides of the plane.*/template <class SNC_decorator>Oriented_side Side_of_plane<SNC_decorator>::operator() ( const Plane_3& pl, Halffacet_handle f) { CGAL_assertion( std::distance( f->facet_cycles_begin(), f->facet_cycles_end()) > 0); Halffacet_cycle_iterator fc(f->facet_cycles_begin()); SHalfedge_handle e; CGAL_assertion(fc.is_shalfedge()); e = SHalfedge_handle(fc); SHalfedge_around_facet_circulator sc(e), send(sc); //CGAL_assertion( iterator_distance( sc, send) >= 3); // TODO: facet with 2 vertices was found, is it possible? Oriented_side facet_side; do { if(!OnSideMap.is_defined(D.vertex(sc))) OnSideMap[D.vertex(sc)] = pl.oriented_side(D.point(D.vertex(sc))); facet_side = OnSideMap[D.vertex(sc)]; ++sc; } while( facet_side == ON_ORIENTED_BOUNDARY && sc != send); if( facet_side == ON_ORIENTED_BOUNDARY) return ON_ORIENTED_BOUNDARY; CGAL_assertion( facet_side != ON_ORIENTED_BOUNDARY); while( sc != send) { if(!OnSideMap.is_defined(D.vertex(sc))) OnSideMap[D.vertex(sc)] = pl.oriented_side(D.point(D.vertex(sc))); Oriented_side point_side = OnSideMap[D.vertex(sc)]; ++sc; if( point_side == ON_ORIENTED_BOUNDARY) continue; if( point_side != facet_side) return ON_ORIENTED_BOUNDARY; } return facet_side;}template <class SNC_decorator>Bounding_box_3<typename SNC_decorator::Kernel::Kernel_tag, typename SNC_decorator::Kernel>Objects_bbox<SNC_decorator>::operator() ( const Object_list& O) const { CGAL_assertion( O.size() >= 0); Bounding_box_3 b(Point_3(0,0,0),Point_3(0,0,0)); typename Object_list::const_iterator o; for( o = O.begin(); o != O.end(); ++o) { Vertex_handle v; if( CGAL::assign( v, *o)) { b = b + (*this)(v); } } return b;}template <class SNC_decorator>Bounding_box_3<typename SNC_decorator::Kernel::Kernel_tag, typename SNC_decorator::Kernel>Objects_bbox<SNC_decorator>::operator() (Object_handle o) const { Vertex_handle v; Halfedge_handle e; Halffacet_handle f; if( CGAL::assign( v, o)) return operator()(v); else if( CGAL::assign( e, o)) return operator()(e); else if( CGAL::assign( f, o)) return operator()(f); else { Halffacet_triangle_handle t; if( CGAL::assign( t, o)) return operator()(t); else CGAL_assertion_msg( 0, "wrong handle"); } return Bounding_box_3(); // never reached}template <class SNC_decorator>Bounding_box_3<typename SNC_decorator::Kernel::Kernel_tag, typename SNC_decorator::Kernel>Objects_bbox<SNC_decorator>::operator() (Vertex_handle v) const { Point_3 p(D.point(v)); return Bounding_box_3(p, p);}template <class SNC_decorator>Bounding_box_3<typename SNC_decorator::Kernel::Kernel_tag, typename SNC_decorator::Kernel>Objects_bbox<SNC_decorator>::operator() (Halfedge_handle e) const { return (operator()(D.vertex(e)) + operator()(D.vertex(D.twin(e))));}template <class SNC_decorator>Bounding_box_3<typename SNC_decorator::Kernel::Kernel_tag, typename SNC_decorator::Kernel> Objects_bbox<SNC_decorator>::operator() (Halffacet_triangle_handle t) const { Bounding_box_3 bbox(Point_3(0,0,0),Point_3(0,0,0)); Triangle_3 tr(t.get_triangle()); for( int i = 0; i < 3; ++i) { Point_3 p(tr[i]); bbox = bbox + Bounding_box_3(p,p); } return bbox;}template <class SNC_decorator>Bounding_box_3<typename SNC_decorator::Kernel::Kernel_tag, typename SNC_decorator::Kernel> Objects_bbox<SNC_decorator>::operator() (Halffacet_handle f) const { // TODO CGAL_assertion( f->facet_cycles_begin() != Halffacet_cycle_iterator()); Halffacet_cycle_iterator fc(f->facet_cycles_begin()); SHalfedge_handle e; CGAL_assertion(fc.is_shalfedge()); e = SHalfedge_handle(fc); SHalfedge_around_facet_circulator sc(e), send(sc); CGAL_assertion( !is_empty_range( sc, send)); Bounding_box_3 b(operator()(D.vertex(sc))); sc++; while( sc != send) { b = b + operator()(D.vertex(sc)); sc++; } return b;}CGAL_END_NAMESPACE#endif // SNC_K3_TREE_TRAITS_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?