@@ -6,9 +6,9 @@ namespace CGAL {
66\ingroup PkgStraightSkeleton2WeightedOffsetFunctions
77
88\brief returns a container with all the inner offset polygons <I>with holes</I> at distance `offset`
9- of the 2D polygon with holes `poly_with_holes `.
9+ of the 2D polygon `poly `.
1010
11- This is equivalent to `arrange_offset_polygons_2(create_interior_weighted_skeleton_and_offset_polygons_2(offset, poly_with_holes , ofk, ssk))`.
11+ This is equivalent to `arrange_offset_polygons_2(create_interior_weighted_skeleton_and_offset_polygons_2(offset, poly , ofk, ssk))`.
1212
1313\tparam OfKPolygon is a polygon without holes type determined by `OfK` and `InKPolygon`,
1414 see Section \ref SLSOffsetPolygonReturnType.
@@ -35,7 +35,7 @@ template <typename OfKPolygon,
3535 typename SsK = CGAL ::Exact_predicates_inexact_constructions_kernel>
3636std::vector< std::shared_ptr< OfKPolygon > >
3737create_interior_weighted_skeleton_and_offset_polygons_with_holes_2 (const FT & offset,
38- const InKPolygon& poly_with_holes ,
38+ const InKPolygon& poly ,
3939 const InKWeights& weights,
4040 const OfK& ofk = OfK(),
4141 const SsK& ssk = SsK());
@@ -47,11 +47,11 @@ create_interior_weighted_skeleton_and_offset_polygons_with_holes_2(const FT& off
4747\ingroup PkgStraightSkeleton2WeightedOffsetFunctions
4848
4949\brief returns a container with all the outer offset polygons <I>with holes</I>
50- at distance `offset` of the 2D polygon `poly_with_holes `. Note that the
50+ at distance `offset` of the 2D polygon `poly `. Note that the
5151offset of the outer frame is ignored.
5252
5353This is equivalent to a call to `CGAL::arrange_offset_polygons_2()` on the
54- output of \link CGAL::create_exterior_weighted_skeleton_and_offset_polygons_2() `create_exterior_weighted_skeleton_and_offset_polygons_2(offset, poly_with_holes , ofk, ssk)` \endlink
54+ output of \link CGAL::create_exterior_weighted_skeleton_and_offset_polygons_2() `create_exterior_weighted_skeleton_and_offset_polygons_2(offset, poly , ofk, ssk)` \endlink
5555after having filtered out the polygon corresponding to the offset of the outer frame and
5656having reversed the orientation of all other polygons.
5757
@@ -80,7 +80,7 @@ template <typename OfKPolygon,
8080 typename SsK = CGAL ::Exact_predicates_inexact_constructions_kernel>
8181std::vector<std::shared_ptr<OfKPolygon> >
8282create_exterior_weighted_skeleton_and_offset_polygons_with_holes_2 (const FT & offset,
83- const InKPolygon& poly_with_holes ,
83+ const InKPolygon& poly ,
8484 const InKWeights& weights,
8585 const OfK& ofk = OfK(),
8686 const SsK& ssk = SsK());
0 commit comments