-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Labels
Description
This is great! Works brilliantly. I have a minor gripe:
This:
function polyintersect(p1::AbstractArray{Point, 1}, p2::AbstractArray{Point, 1};
closed=true)
return false
end
gets formatted to:
function polyintersect(
p1::AbstractArray{Point,1},
p2::AbstractArray{Point,1};
closed = false
)
return temp
end
and it's the orphaned parenthesis that I'd prefer to not be on a line of its own. One reason is that it stops the function from folding properly in Juno. But the real reason is that I don't like it.
Other than that, it's pretty awesome...