Q.1 what is the right way to render the following
a. HPolyhedron/HPolytope
b. Set of points (3D)
so the code below from Polyhedra docs
A = rand(HPolyhedron,dim=3)
HPoly = Polytope(constraints_list(A))
remove_redundant_constraints!(HPoly)
P_poly = polyhedron(HPoly)
P_poly_mesh = Mesh(P_poly)
pm = Polyhedra.Mesh(P_poly)
I’ve also tried LazySets.Plot3d but could not get it to work, eventually i would want to read a few .stl files using FileIO and build an interactive 3D view with contents from one or many .stl files