diff --git a/common/src/app/common/geom/shapes/intersect.cljc b/common/src/app/common/geom/shapes/intersect.cljc index e2810e61e7..1d636ddcec 100644 --- a/common/src/app/common/geom/shapes/intersect.cljc +++ b/common/src/app/common/geom/shapes/intersect.cljc @@ -118,7 +118,7 @@ ;; Cast a ray from the point in any direction and count the intersections ;; if it's odd the point is inside the polygon (->> lines - (filter #(intersect-ray? p %)) + (filterv #(intersect-ray? p %)) (count) (odd?)))