(x, y, r)
| 139642 | return true; |
| 139643 | } |
| 139644 | function jitter(x, y, r) { |
| 139645 | return [ |
| 139646 | x + Math.sin(x + y) * r, |
| 139647 | y + Math.cos(x - y) * r |
| 139648 | ]; |
| 139649 | } |
| 139650 | class Delaunay { |
| 139651 | static from(points, fx = pointX, fy = pointY, that) { |
| 139652 | return new Delaunay("length" in points ? flatArray(points, fx, fy, that) : Float64Array.from(flatIterable(points, fx, fy, that))); |