Skip to content

Commit c066b04

Browse files
authored
Implement Robust orientation (#18)
* Update for Robust Orientation * Add new robust incircle test * Add tests for robust codes * Add check for julia version for supposition tests. * Fix for tests on 1.6 * Only run supposition locally... * Add performance test to look for regressions.
1 parent 2f42649 commit c066b04

16 files changed

+1085
-33
lines changed

.github/workflows/CI.yml

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
name: CI
2+
3+
env:
4+
OPENBLAS_NUM_THREADS: 1
5+
OMP_NUM_THREADS: 1
6+
JULIA_ACTIONS_RUNTEST_ARGS: CI
7+
28
on:
39
pull_request:
410
branches:
@@ -17,6 +23,7 @@ jobs:
1723
version:
1824
- '1.6'
1925
- '1.8'
26+
- '1.10'
2027
#- 'nightly'
2128
os:
2229
- ubuntu-latest

Project.toml

+2-20
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,8 @@
11
name = "Delaunator"
22
uuid = "466f8f70-d5e3-4806-ac0b-a54b75a91218"
33
authors = ["David Gleich", "Steve Kelly"]
4-
version = "0.1.1"
4+
version = "0.1.2"
55

66
[compat]
7-
Aqua = "0.8"
8-
GeometryBasics = "0.4"
9-
JET = "0.4, 0.7, 0.8"
10-
JSON = "0.21"
11-
StableRNGs = "1"
12-
Test = "1"
13-
Pkg = "1"
14-
julia = "1"
7+
julia = "1.6"
158

16-
[extras]
17-
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
18-
GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
19-
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
20-
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
21-
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
22-
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
23-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
24-
25-
[targets]
26-
test = ["Aqua", "GeometryBasics", "JET", "JSON", "Pkg", "Test", "StableRNGs"]

README.jmd

+8-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ rval = triangulate(pts)
8686
f = scatter(pts); hidespines!(f.axis); hidedecorations!(f.axis)
8787
text!(f.axis, pts, text=map(i->"$i", 1:length(pts)))
8888
for i in eachindex(rval)
89-
p = Delaunator.dualcell(rval, i)
89+
local p = Delaunator.dualcell(rval, i)
9090
# use clipped poly to get closed polygons
9191
# for the dualcells...
9292
linesegments!(f.axis, collect(segments(p)),
@@ -159,6 +159,13 @@ might be suitable for those with computational geometry applications that need b
159159
accurate primitives, although these are relaxed slightly in the d3-delaunay usage -- especially in terms of the
160160
Voronoi cells.
161161

162+
Robust orientation
163+
==================
164+
The Delaunator.jl code direct includes the `robust_orient` function from
165+
[`AdaptivePredicates.jl`](https://github.com/vchuravy/AdaptivePredicates.jl), which
166+
ports the
167+
[robust orientation routines from Jonathan Richard Shewchuk](https://www.cs.cmu.edu/~quake/robust.html)
168+
162169
> This readme is auto-generated by weave from `README.jmd`
163170
```julia; eval=false, echo=false
164171
weave("README.jmd", doctype = "github", fig_path = "docs")

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ rval = triangulate(pts)
128128
f = scatter(pts); hidespines!(f.axis); hidedecorations!(f.axis)
129129
text!(f.axis, pts, text=map(i->"$i", 1:length(pts)))
130130
for i in eachindex(rval)
131-
p = Delaunator.dualcell(rval, i)
131+
local p = Delaunator.dualcell(rval, i)
132132
# use clipped poly to get closed polygons
133133
# for the dualcells...
134134
linesegments!(f.axis, collect(segments(p)),
@@ -207,4 +207,11 @@ might be suitable for those with computational geometry applications that need b
207207
accurate primitives, although these are relaxed slightly in the d3-delaunay usage -- especially in terms of the
208208
Voronoi cells.
209209

210+
Robust orientation
211+
==================
212+
The Delaunator.jl code direct includes the `robust_orient` function from
213+
[`AdaptivePredicates.jl`](https://github.com/vchuravy/AdaptivePredicates.jl), which
214+
ports the
215+
[robust orientation routines from Jonathan Richard Shewchuk](https://www.cs.cmu.edu/~quake/robust.html)
216+
210217
> This readme is auto-generated by weave from `README.jmd`

docs/README_1_1.png

1 Byte
Loading

docs/README_3_1.png

26 Bytes
Loading

docs/README_4_1.png

-3.65 KB
Loading

docs/README_5_1.png

386 Bytes
Loading

src/Delaunator.jl

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export triangulate, basictriangulation, update!, triangles, points, inhull
55

66
include("quicksort.jl")
77
include("geometry.jl")
8+
include("robust.jl")
89
export isinfinite, dualcell, firstpoint, lastpoint, segments, cellarea
910

1011
include("clipping.jl")

src/algorithm.jl

+12-10
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,16 @@ function _delaunator!(
7979
) where {FloatType}
8080
#FloatType = eltype(_dists)
8181
n = length(coords)
82-
legalize = (t,_hullStart)->_legalize(FloatType, t, _triangles, _halfedges, coords, edgeStack, hullPrev, hullTri, _hullStart)
82+
incircle_mempool = incircle_cache()
83+
legalize = (t,_hullStart)->_legalize(FloatType, t, _triangles, _halfedges, coords, edgeStack, hullPrev, hullTri, _hullStart, incircle_mempool)
8384

8485
i0, i1, i2 = seeds
8586
i0x,i0y = point(FloatType,coords,i0)
8687
i1x,i1y = point(FloatType,coords,i1)
8788
i2x,i2y = point(FloatType,coords,i2)
8889

8990
# swap the order of the seed points for counter-clockwise orientation
90-
if orient(i0x, i0y, i1x, i1y, i2x, i2y)
91+
if robust_orient(i0x, i0y, i1x, i1y, i2x, i2y)
9192
i = i1
9293
x = i1x
9394
y = i1y
@@ -157,7 +158,7 @@ function _delaunator!(
157158
start = hullPrev[start]
158159
e = start
159160
q = hullNext[e]
160-
while !orient(x, y, point(FloatType,coords,e)..., point(FloatType,coords,q)...)
161+
while !robust_orient(x, y, point(FloatType,coords,e)..., point(FloatType,coords,q)...)
161162
e = q
162163
if e == start
163164
e = -1
@@ -180,7 +181,7 @@ function _delaunator!(
180181
# walk forward through the hull, adding more triangles and flipping recursively
181182
n = hullNext[e]
182183
q = hullNext[n]
183-
while orient(x, y, point(FloatType,coords,n)..., point(FloatType,coords,q)...)
184+
while robust_orient(x, y, point(FloatType,coords,n)..., point(FloatType,coords,q)...)
184185
trianglesLen = _addTriangle(_triangles, _halfedges, trianglesLen, n, i, q, hullTri[i], -1, hullTri[n])
185186
t = trianglesLen-3
186187
hullTri[i] = legalize(t + 2, _hullStart)
@@ -193,7 +194,7 @@ function _delaunator!(
193194
# walk backward from the other side, adding more triangles and flipping
194195
if e == start
195196
q = hullPrev[e]
196-
while orient(x, y, point(FloatType,coords,q)..., point(FloatType,coords,e)...)
197+
while robust_orient(x, y, point(FloatType,coords,q)..., point(FloatType,coords,e)...)
197198
trianglesLen = _addTriangle(_triangles, _halfedges, trianglesLen, q, i, e, -1, hullTri[e], hullTri[q])
198199
t = trianglesLen-3
199200
legalize(t + 2, _hullStart)
@@ -252,7 +253,7 @@ function _hashKey(x, y, cx, cy, _hashSize)
252253
return (floor(Int, pseudoAngle(x - cx, y - cy) * _hashSize) % _hashSize)+1
253254
end
254255

255-
function _legalize(::Type{FloatType}, a, triangles, halfedges, coords, EDGE_STACK, hullPrev, hullTri, _hullStart) where {FloatType}
256+
function _legalize(::Type{FloatType}, a, triangles, halfedges, coords, EDGE_STACK, hullPrev, hullTri, _hullStart, mempool) where {FloatType}
256257

257258
i = 1
258259
ar = 0
@@ -296,10 +297,11 @@ function _legalize(::Type{FloatType}, a, triangles, halfedges, coords, EDGE_STAC
296297
pl = triangles[al]
297298
p1 = triangles[bl]
298299

299-
illegal = inCircle(point(FloatType,coords,p0)...,
300-
point(FloatType,coords,pr)...,
301-
point(FloatType,coords,pl)...,
302-
point(FloatType,coords,p1)...)
300+
illegal = incircle(point(FloatType,coords,p0),
301+
point(FloatType,coords,pr),
302+
point(FloatType,coords,pl),
303+
point(FloatType,coords,p1),
304+
mempool) < 0
303305

304306
if illegal
305307
triangles[a] = p1

src/geometry.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function _isright(pa, pb, pt)
8484
return (x2 - x1)*(y - y1) < (y2 - y1)*(x - x1)
8585
end
8686
function _isleft(pa, pb, pt)
87-
return orient(pa...,pb...,pt...)
87+
return robust_orient(pa...,pb...,pt...)
8888
end
8989

9090

@@ -302,6 +302,7 @@ function orient(rx, ry, qx, qy, px, py)
302302
orientIfSure(qx, qy, px, py, rx, ry) < 0
303303
end
304304

305+
305306
function inCircle(ax, ay, bx, by, cx, cy, px, py)
306307
dx = ax - px
307308
dy = ay - py
@@ -319,6 +320,7 @@ function inCircle(ax, ay, bx, by, cx, cy, px, py)
319320
ap * (ex * fy - ey * fx) < 0
320321
end
321322

323+
322324
function circumradius(ax, ay, bx, by, cx, cy)
323325
dx = bx - ax
324326
dy = by - ay

0 commit comments

Comments
 (0)