BWAPI
|
00001 // Copyright (c) 2005 Tel-Aviv University (Israel). 00002 // All rights reserved. 00003 // 00004 // This file is part of CGAL (www.cgal.org); you may redistribute it under 00005 // the terms of the Q Public License version 1.0. 00006 // See the file LICENSE.QPL distributed with CGAL. 00007 // 00008 // Licensees holding a valid commercial license may use this file in 00009 // accordance with the commercial license agreement provided with the software. 00010 // 00011 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00012 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00013 // 00014 // $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.5-branch/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_sym_diff_functor.h $ 00015 // $Id: Gps_sym_diff_functor.h 28831 2006-02-27 14:28:18Z baruchzu $ 00016 // 00017 // 00018 // Author(s) : Baruch Zukerman <baruchzu@post.tau.ac.il> 00019 00020 #ifndef CGAL_GPS_SYM_DIFF_FUNCTOR_H 00021 #define CGAL_GPS_SYM_DIFF_FUNCTOR_H 00022 00023 #include <CGAL/Boolean_set_operations_2/Gps_base_functor.h> 00024 00025 CGAL_BEGIN_NAMESPACE 00026 00027 template <class Arrangement_> 00028 class Gps_sym_diff_functor : public Gps_base_functor<Arrangement_> 00029 { 00030 public: 00031 typedef Arrangement_ Arrangement_2; 00032 00033 typedef typename Arrangement_2::Face_const_handle Face_const_handle; 00034 typedef typename Arrangement_2::Face_handle Face_handle; 00035 00036 void create_face (Face_const_handle f1, 00037 Face_const_handle f2, 00038 Face_handle res_f) 00039 { 00040 if((f1->contained() && !f2->contained()) || 00041 (!f1->contained() && f2->contained())) 00042 { 00043 res_f->set_contained(true); 00044 } 00045 } 00046 }; 00047 00048 00049 CGAL_END_NAMESPACE 00050 00051 #endif