- * | 1.1. | `bool do_intersect(const Type1& pgn1, const Type2& pgn2, UsePolylines = Tag_true());` |
- * | 1.2. | `bool do_intersect(const Type1& pgn1, const Type2& pgn2);` |
- * | 2. | `bool do_intersect(const Type1& pgn1, const Type2& pgn2, const GpsTraits& traits);` |
+ * | 1. | `bool do_intersect(const Type1& pgn1, const Type2& pgn2);` |
+ * | 2. | `bool do_intersect(const Type1& pgn1, const Type2& pgn2, const GpsTraits& traits);` |
*
*
* There are also function templates that accept one or two ranges of input polygons:
*
- * | 3.1. | `bool do_intersect(InputIterator begin, InputIterator end, UsePolylines = Tag_true());` |
- * | 3.2. | `bool do_intersect(InputIterator begin, InputIterator end);` |
- * | 4. | `bool do_intersect(InputIterator begin, InputIterator end, const GpsTraits& traits);` |
- * | 5.1. | `bool do_intersect(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, InputIterator2 end2, UsePolylines = Tag_true());` |
- * | 5.2. | `bool do_intersect(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, InputIterator2 end2);` |
- * | 6. | `bool do_intersect(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, InputIterator2 end2, const GpsTraits& traits);` |
+ * | 3. | `bool do_intersect(InputIterator begin, InputIterator end);` |
+ * | 4. | `bool do_intersect(InputIterator begin, InputIterator end, const GpsTraits& traits);` |
+ * | 5. | `bool do_intersect(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, InputIterator2 end2);` |
+ * | 6. | `bool do_intersect(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, InputIterator2 end2, const GpsTraits& traits);` |
*
*
- * \tparam UsePolylines determines whether the boundary of the input polygons
- * are treated as a cyclic sequence of single (\f$x\f$-monotone) segments or as
- * a cyclic sequence of (\f$x\f$-monotone) polylines. If substituted with
- * `CGAL::Tag_true`, which is the default, the input polygons are converted to
- * general polygons bounded by polylines before the operation is actually
- * performed. If substituted with `CGAL::Tag_false`, the input polygons are used
- * as is. Refer to \ref bso_ssectraits_sel for more information.
- *
- * - The types `Type1` and `Type2` of the parameters of
- * `InputIterator1::value_type` and `InputIterator2::value_type` must be
- * convertible to the types specified in a row in the table below,
- * respectively.
- *
- * - The types that apply to signatures (