/usr/include/CGAL/Polygon_set_2.h is in libcgal-dev 4.2-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // Copyright (c) 2005 Tel-Aviv University (Israel).
// 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$
// $Id$
//
//
// Author(s) : Baruch Zukerman <baruchzu@post.tau.ac.il>
// Efi Fogel <efif@post.tau.ac.il>
#ifndef CGAL_POLYGON_SET_2_H
#define CGAL_POLYGON_SET_2_H
#include <CGAL/Polygon_2.h>
#include <CGAL/General_polygon_set_2.h>
#include <CGAL/Gps_segment_traits_2.h>
#include <CGAL/Boolean_set_operations_2/Gps_default_dcel.h>
#include <vector>
namespace CGAL {
template <class Kernel,
typename Containter = std::vector<typename Kernel::Point_2>,
class Dcel_ =
Gps_default_dcel<Gps_segment_traits_2<Kernel, Containter> > >
class Polygon_set_2 :
public General_polygon_set_2<Gps_segment_traits_2<Kernel, Containter>, Dcel_>
{
private:
typedef General_polygon_set_2<Gps_segment_traits_2<Kernel, Containter>, Dcel_>
Base;
typedef typename Base::Base Base_of_base;
typedef Polygon_set_2<Kernel, Containter, Dcel_> Self;
public:
typedef typename Base::Traits_2 Traits_2;
typedef typename Base::Polygon_2 Polygon_2;
typedef typename Base::Polygon_with_holes_2 Polygon_with_holes_2;
typedef typename Base::Arrangement_2 Arrangement_2;
typedef typename Base::Size Size;
/*! Default consturctor. */
Polygon_set_2 () :
Base()
{}
/*! Consturctor from the base class. */
Polygon_set_2 (const Base& base) :
Base (base)
{}
/*! Constructor with traits object. */
Polygon_set_2 (Traits_2& tr) :
Base(tr)
{}
/*! Constructor from a polygon. */
explicit Polygon_set_2 (const Polygon_2& pgn) :
Base (pgn)
{}
/*! Constructor from a polygon with holes. */
explicit Polygon_set_2 (const Polygon_with_holes_2& pwh):
Base (pwh)
{}
inline void intersection(const Polygon_2& pgn)
{
Base::intersection(pgn);
}
inline void intersection(const Polygon_with_holes_2& pgn)
{
Base::intersection(pgn);
}
inline void intersection(const Self& other)
{
Base::intersection(other);
}
inline void intersection(const Self& ps1, const Self& ps2)
{
Base::intersection(base(ps1), base(ps2));
}
template <class InputIterator>
inline void intersection(InputIterator begin, InputIterator end)
{
Base::intersection(begin, end);
}
template <class InputIterator1, class InputIterator2>
inline void intersection(InputIterator1 begin1, InputIterator1 end1,
InputIterator2 begin2, InputIterator2 end2)
{
Base::intersection(begin1, end1, begin2, end2);
}
inline void join(const Polygon_2& pgn)
{
Base::join(pgn);
}
inline void join(const Polygon_with_holes_2& pgn)
{
Base::join(pgn);
}
inline void join(const Self& other)
{
Base::join(other);
}
inline void join(const Self& ps1, const Self& ps2)
{
Base::join(base(ps1), base(ps2));
}
template <class InputIterator>
inline void join(InputIterator begin, InputIterator end)
{
Base::join(begin, end);
}
template <class InputIterator1, class InputIterator2>
inline void join(InputIterator1 begin1, InputIterator1 end1,
InputIterator2 begin2, InputIterator2 end2)
{
Base::join(begin1, end1, begin2, end2);
}
inline void difference(const Polygon_2& pgn)
{
Base::difference(pgn);
}
inline void difference(const Polygon_with_holes_2& pgn)
{
Base::difference(pgn);
}
inline void difference(const Self& other)
{
Base::difference(other);
}
inline void difference(const Self& ps1, const Self& ps2)
{
Base::difference(base(ps1), base(ps2));
}
template <class InputIterator>
inline void difference(InputIterator begin, InputIterator end)
{
Base::difference(begin, end);
}
template <class InputIterator1, class InputIterator2>
inline void difference(InputIterator1 begin1, InputIterator1 end1,
InputIterator2 begin2, InputIterator2 end2)
{
Base::difference(begin1, end1, begin2, end2);
}
inline void symmetric_difference(const Polygon_2& pgn)
{
Base::symmetric_difference(pgn);
}
inline void symmetric_difference(const Polygon_with_holes_2& pgn)
{
Base::symmetric_difference(pgn);
}
inline void symmetric_difference(const Self& other)
{
Base::symmetric_difference(other);
}
inline void symmetric_difference(const Self& ps1, const Self& ps2)
{
Base::symmetric_difference(base(ps1), base(ps2));
}
template <class InputIterator>
inline void symmetric_difference(InputIterator begin, InputIterator end)
{
Base::symmetric_difference(begin, end);
}
template <class InputIterator1, class InputIterator2>
inline void symmetric_difference(InputIterator1 begin1, InputIterator1 end1,
InputIterator2 begin2, InputIterator2 end2)
{
Base::symmetric_difference(begin1, end1, begin2, end2);
}
inline bool do_intersect(const Polygon_2& pgn)
{
return (Base::do_intersect(pgn));
}
inline bool do_intersect(const Polygon_with_holes_2& pgn)
{
return (Base::do_intersect(pgn));
}
inline bool do_intersect(const Self& other)
{
return (Base::do_intersect(other));
}
template <class InputIterator>
inline bool do_intersect(InputIterator begin, InputIterator end)
{
return (Base::do_intersect(begin, end));
}
template <class InputIterator1, class InputIterator2>
inline bool do_intersect(InputIterator1 begin1, InputIterator1 end1,
InputIterator2 begin2, InputIterator2 end2)
{
return (Base::do_intersect(begin1, end1, begin2, end2));
}
private:
inline const Base_of_base& base(const Self& other) const
{
return (static_cast<const Base_of_base&>(other));
}
};
} //namespace CGAL
#endif
|