Skip to content

Commit a41c257

Browse files
committed
fix default segmentize not passing on max_distance
1 parent 739c55b commit a41c257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transformations/segmentize.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ This is useful for plotting geometries with a limited number of vertices, or for
169169
Returns a geometry of similar type to the input geometry, but resampled.
170170
"""
171171
function segmentize(geom; max_distance, threaded::Union{Bool, BoolsAsTypes} = _False())
172-
return segmentize(Planar(), geom; threaded = _booltype(threaded))
172+
return segmentize(Planar(), geom; max_distance, threaded = _booltype(threaded))
173173
end
174174

175175
# allow three-arg method as well, just in case

0 commit comments

Comments
 (0)