@@ -34,36 +34,35 @@ module Clipper
34
34
@enum EndType EndTypeClosedPolygon= 0 EndTypeClosedLine= 1 EndTypeOpenSquare= 2 EndTypeOpenRound= 3 EndTypeOpenButt= 4
35
35
36
36
37
-
38
37
immutable IntPoint
39
38
X:: Int64
40
39
Y:: Int64
41
40
end
42
41
43
- type PolyNode{T}
42
+ mutable struct PolyNode{T}
44
43
contour:: Vector{T}
45
44
hole:: Bool
46
45
open:: Bool
47
46
children:: Vector{PolyNode{T}}
48
47
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
51
50
p = new {T} (a,b,c,d)
52
51
p. parent = p
53
52
return p
54
53
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)
56
55
end
57
56
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}
60
59
parent (x) != = x && error (" must convert a top-level PolyNode (i.e. a PolyTree)." )
61
60
62
61
pn = PolyNode {S} (convert (Vector{S}, contour (x)), ishole (x), isopen (x))
63
62
pn. children = [PolyNode (y,pn) for y in children (x)]
64
63
pn. parent = pn
65
64
end
66
- function PolyNode {S} (x:: PolyNode , parent:: PolyNode{S} )
65
+ function PolyNode (x:: PolyNode , parent:: PolyNode{S} ) where S
67
66
pn = PolyNode {S} (contour (x), ishole (x), isopen (x))
68
67
pn. children = [PolyNode (y,pn) for y in children (x)]
69
68
pn. parent = parent
@@ -147,13 +146,12 @@ module Clipper
147
146
#= =============================================================#
148
147
# Clipper object
149
148
#= =============================================================#
150
- type Clip
149
+ mutable struct Clip
151
150
clipper_ptr:: Ptr{Void}
152
151
153
152
function Clip ()
154
153
clipper = new (ccall ((:get_clipper , cclipper), Ptr{Void}, ()))
155
154
finalizer (clipper, c -> ccall ((:delete_clipper , cclipper), Void, (Ptr{Void},), c. clipper_ptr))
156
-
157
155
clipper
158
156
end
159
157
end
@@ -216,7 +214,7 @@ module Clipper
216
214
ccall ((:clear , cclipper), Void, (Ptr{Void},), c. clipper_ptr)
217
215
end
218
216
219
- type IntRect
217
+ mutable struct IntRect
220
218
left:: Int64
221
219
top:: Int64
222
220
right:: Int64
@@ -230,7 +228,7 @@ module Clipper
230
228
#= =============================================================#
231
229
# ClipperOffset object
232
230
#= =============================================================#
233
- type ClipperOffset
231
+ mutable struct ClipperOffset
234
232
clipper_ptr:: Ptr{Void}
235
233
236
234
function ClipperOffset (miterLimit:: Float64 = 2.0 , roundPrecision:: Float64 = 0.25 )
@@ -271,7 +269,6 @@ module Clipper
271
269
272
270
function execute (c:: ClipperOffset , delta:: Float64 )
273
271
polys = Vector {Vector{IntPoint}} ()
274
-
275
272
result = ccall ((:execute_offset , cclipper), Void, (Ptr{Void}, Cdouble, Any, Ptr{Void}),
276
273
c. clipper_ptr,
277
274
delta,
0 commit comments