diff --git a/src/pointification.jl b/src/pointification.jl index b7e234b5e..15e096b7c 100644 --- a/src/pointification.jl +++ b/src/pointification.jl @@ -16,7 +16,8 @@ function pointify end pointify(p::Primitive) = pointify(boundary(p)) -pointify(p::Polytope) = vertices(p) +# collect is necessary because CircularVector doesn't work with SVector +pointify(p::Polytope) = collect(vertices(p)) pointify(m::Multi) = pointify(parent(m))