You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following is a minimal version of some code I wrote using v0.4
using GeometryBasics
points = Point{2,Float64}.([rand(2) for i=1:10])
linestring = LineString(points)
intersectingLine = Line(Point{2,Float64}(0,0),Point{2,Float64}(1,1))
intersections = [intersects(line, intersectingLine) for line in linestring]
Unfortunately if I now update GeometryBasics to v0.5.7 I get the following error for the same code: ERROR: MethodError: no method matching iterate(::LineString{2, Float64})
Is there an alternative method to achieve a similar effect in the updated version?
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
The following is a minimal version of some code I wrote using v0.4
Unfortunately if I now update GeometryBasics to v0.5.7 I get the following error for the same code:
ERROR: MethodError: no method matching iterate(::LineString{2, Float64})
Is there an alternative method to achieve a similar effect in the updated version?
The text was updated successfully, but these errors were encountered: