Skip to content

Commit 5ebbfca

Browse files
author
Luke Stagner
committed
update for 0.6
1 parent 9995509 commit 5ebbfca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.5
7+
- 0.6
88
- nightly
99
matrix:
1010
allow_failures:

src/concave_hull.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function concave_hull(tree::KDTree, k::Int)
9494
nstep = nstep + 1
9595
end
9696

97-
if any(~in_hull(p,hull) for p in tree.data[~ishull])
97+
if any(~in_hull(p,hull) for p in tree.data[.~(ishull)])
9898
if k+1 >= npoints
9999
info("Unable to construct concave hull")
100100
return hull

src/hull.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type Hull{T<:AbstractVector}
1+
struct Hull{T<:AbstractVector}
22
vertices::Vector{T}
33
k::Int
44
end

0 commit comments

Comments
 (0)