Skip to content

Commit 8410246

Browse files
Merge pull request #2804 from Armatorix/page-not-found-chaikins-ppdf
Updated link to Chaikin's algorithm - access forbidden to the old link.
2 parents 991d3ac + 2a2cee5 commit 8410246

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/turf-boolean-intersects/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Boolean-intersects returns (TRUE) if the intersection of the two geometries is N
1212
* `feature2` **([Geometry][1] | [Feature][2]\<any>)** GeoJSON Feature or Geometry
1313
* `options` **[Object][3]** Optional parameters (optional, default `{}`)
1414

15-
* `options.ignoreSelfIntersections` **[boolean][4]** ignores self-intersections on input features (optional, default `false`)
15+
* `options.ignoreSelfIntersections` **[boolean][4]** ignore self-intersections on input features (optional, default `true`)
1616

1717
### Examples
1818

packages/turf-polygon-smooth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Returns **[FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])>** FeatureCo
3131

3232
[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7
3333

34-
[3]: http://graphics.cs.ucdavis.edu/education/CAGDNotes/Chaikins-Algorithm/Chaikins-Algorithm.html
34+
[3]: https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf
3535

3636
[4]: https://tools.ietf.org/html/rfc7946#section-3.3
3737

packages/turf-polygon-smooth/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { featureCollection, multiPolygon, polygon } from "@turf/helpers";
99
import { coordEach, geomEach } from "@turf/meta";
1010

1111
/**
12-
* Smooths a {@link Polygon} or {@link MultiPolygon}. Based on [Chaikin's algorithm](http://graphics.cs.ucdavis.edu/education/CAGDNotes/Chaikins-Algorithm/Chaikins-Algorithm.html).
12+
* Smooths a {@link Polygon} or {@link MultiPolygon}. Based on [Chaikin's algorithm](https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf).
1313
* Warning: may create degenerate polygons.
1414
*
1515
* @function

0 commit comments

Comments
 (0)