changeset 31889:f1f11a50a402

maint: Merge stable to default
author Arun Giridhar <arungiridhar@gmail.com>
date Mon, 06 Mar 2023 19:02:06 -0500
parents 96ed8d1d0c59 (current diff) 9de99cd1f9d7 (diff)
children 18e10e48f51e
files
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/geometry/inpolygon.m	Sat Mar 04 00:59:48 2023 -0500
+++ b/scripts/geometry/inpolygon.m	Mon Mar 06 19:02:06 2023 -0500
@@ -39,9 +39,9 @@
 ## @end deftypefn
 
 ## Algorithm: The method for determining if a point is in a polygon is based on
-## the algorithm shown on
-## http://local.wasp.uwa.edu.au/~pbourke/geometry/insidepoly/
-## and is credited to Randolph Franklin.
+## the PnPoly algorithm from Prof W. Randolph Franklin,
+## (Rensselaer Polytechnic Institute, Troy NY), originally written in 1970.
+## URL: http://wrfranklin.org/pnpoly
 
 function [in, on] = inpolygon (x, y, xv, yv)