JuliaPolyhedra / Polyhedra.jl

Polyhedral Computation Interface
Other
172 stars 27 forks source link

polyhedron to array conversion? #189

Closed henry2004y closed 4 years ago

henry2004y commented 4 years ago

Hi,

I was trying to get the convex hull out of a set of 2D points. I followed the example and saw the results, but is there a way to convert the iterator of Array{Float64,1} to an array type that I can manipulate?

Thanks!

blegat commented 4 years ago

You can call collect.

henry2004y commented 4 years ago

Thanks!