Skip to content

Commit eea7cc7

Browse files
committed
Merge branch 'sd/binaryprovider' of github.com:JuliaGeometry/Clipper.jl into sd/binaryprovider
2 parents 4688cc0 + 703e8c2 commit eea7cc7

6 files changed

+34
-26
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ test/config
1111
*.exp
1212
*.o
1313
*.so
14-
deps/usr/
14+
deps/usr
1515
deps/deps.jl

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: julia
22
os:
33
- linux
44
- osx
5+
56
julia:
67
- 0.6
78
- 0.7
@@ -13,3 +14,11 @@ matrix:
1314
notifications:
1415
email: false
1516
sudo: false
17+
=======
18+
git:
19+
depth: 99999999
20+
## uncomment the following lines to allow failures on nightly julia
21+
## (tests will run but not make your overall status red)
22+
matrix:
23+
allow_failures:
24+
- julia: nightly

appveyor.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ environment:
33
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
44
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
55

6+
## uncomment the following lines to allow failures on nightly julia
7+
## (tests will run but not make your overall status red)
8+
matrix:
9+
allow_failures:
10+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
11+
612
branches:
713
only:
814
- master
@@ -14,13 +20,13 @@ notifications:
1420
on_build_failure: false
1521
on_build_status_changed: false
1622

17-
os: Visual Studio 2015
18-
platform:
19-
- x64
20-
2123
install:
2224
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
23-
- call "c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64
25+
# If there's a newer build queued for the same PR, cancel this one
26+
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
27+
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
28+
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
29+
throw "There are newer queued builds for this pull request, failing early." }
2430
# Download most recent Julia Windows binary
2531
- ps: (new-object net.webclient).DownloadFile(
2632
$env:JULIA_URL,
@@ -35,4 +41,4 @@ build_script:
3541
Pkg.clone(pwd(), \"Clipper\"); Pkg.build(\"Clipper\")"
3642

3743
test_script:
38-
- C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"Clipper\")"
44+
- C:\projects\julia\bin\julia -e "Pkg.test(\"Clipper\")"

src/Clipper.jl

+10-13
Original file line numberDiff line numberDiff line change
@@ -34,36 +34,35 @@ module Clipper
3434
@enum EndType EndTypeClosedPolygon=0 EndTypeClosedLine=1 EndTypeOpenSquare=2 EndTypeOpenRound=3 EndTypeOpenButt=4
3535

3636

37-
3837
immutable IntPoint
3938
X::Int64
4039
Y::Int64
4140
end
4241

43-
type PolyNode{T}
42+
mutable struct PolyNode{T}
4443
contour::Vector{T}
4544
hole::Bool
4645
open::Bool
4746
children::Vector{PolyNode{T}}
4847
parent::PolyNode{T}
49-
(::Type{PolyNode{T}}){T}(a,b,c) = new{T}(a,b,c)
50-
function (::Type{PolyNode{T}}){T}(a,b,c,d)
48+
PolyNode{T}(a,b,c) where {T} = new{T}(a,b,c)
49+
function PolyNode{T}(a,b,c,d) where T
5150
p = new{T}(a,b,c,d)
5251
p.parent = p
5352
return p
5453
end
55-
(::Type{PolyNode{T}}){T}(a,b,c,d,e) = new{T}(a,b,c,d,e)
54+
PolyNode{T}(a,b,c,d,e) where {T} = new{T}(a,b,c,d,e)
5655
end
5756

58-
Base.convert{T}(::Type{PolyNode{T}}, x::PolyNode{T}) = x
59-
function Base.convert{S,T}(::Type{PolyNode{S}}, x::PolyNode{T})
57+
Base.convert(::Type{PolyNode{T}}, x::PolyNode{T}) where {T} = x
58+
function Base.convert(::Type{PolyNode{S}}, x::PolyNode{T}) where {S,T}
6059
parent(x) !== x && error("must convert a top-level PolyNode (i.e. a PolyTree).")
6160

6261
pn = PolyNode{S}(convert(Vector{S}, contour(x)), ishole(x), isopen(x))
6362
pn.children = [PolyNode(y,pn) for y in children(x)]
6463
pn.parent = pn
6564
end
66-
function PolyNode{S}(x::PolyNode, parent::PolyNode{S})
65+
function PolyNode(x::PolyNode, parent::PolyNode{S}) where S
6766
pn = PolyNode{S}(contour(x), ishole(x), isopen(x))
6867
pn.children = [PolyNode(y,pn) for y in children(x)]
6968
pn.parent = parent
@@ -147,13 +146,12 @@ module Clipper
147146
#==============================================================#
148147
# Clipper object
149148
#==============================================================#
150-
type Clip
149+
mutable struct Clip
151150
clipper_ptr::Ptr{Void}
152151

153152
function Clip()
154153
clipper = new(ccall((:get_clipper, cclipper), Ptr{Void}, ()))
155154
finalizer(clipper, c -> ccall((:delete_clipper, cclipper), Void, (Ptr{Void},), c.clipper_ptr))
156-
157155
clipper
158156
end
159157
end
@@ -216,7 +214,7 @@ module Clipper
216214
ccall((:clear, cclipper), Void, (Ptr{Void},), c.clipper_ptr)
217215
end
218216

219-
type IntRect
217+
mutable struct IntRect
220218
left::Int64
221219
top::Int64
222220
right::Int64
@@ -230,7 +228,7 @@ module Clipper
230228
#==============================================================#
231229
# ClipperOffset object
232230
#==============================================================#
233-
type ClipperOffset
231+
mutable struct ClipperOffset
234232
clipper_ptr::Ptr{Void}
235233

236234
function ClipperOffset(miterLimit::Float64 = 2.0, roundPrecision::Float64 = 0.25)
@@ -271,7 +269,6 @@ module Clipper
271269

272270
function execute(c::ClipperOffset, delta::Float64)
273271
polys = Vector{Vector{IntPoint}}()
274-
275272
result = ccall((:execute_offset, cclipper), Void, (Ptr{Void}, Cdouble, Any, Ptr{Void}),
276273
c.clipper_ptr,
277274
delta,

test/clipper_offset_test.jl

+1-5
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,5 @@ test("Offset") do
5353

5454
poly = execute(c, 1.0)
5555

56-
if VERSION >= v"0.6.0-dev.2505" # julia PR #20288
57-
@test string(poly) == "Array{Clipper.IntPoint,1}[Clipper.IntPoint[[1,2], [-1,2], [-1,-1], [1,-1]]]"
58-
else
59-
@test string(poly) == "Array{Clipper.IntPoint,1}[Clipper.IntPoint[[1,2],[-1,2],[-1,-1],[1,-1]]]"
60-
end
56+
@test poly == [[IntPoint(1,2), IntPoint(-1,2), IntPoint(-1,-1), IntPoint(1,-1)]]
6157
end

test/clipper_test.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ test("Point in polygon") do
238238
@test pointinpolygon(IntPoint(-1,-1), path1) == 0
239239
end
240240

241-
immutable IntPoint2
241+
struct IntPoint2
242242
X::Int64
243243
Y::Int64
244244
end

0 commit comments

Comments
 (0)