Hi, I'm using the python bindings and I want to use the 2D alpha shape package. Unfortunately, I can't get it to work. I am able to instantiate an Alpha Shape 2:
from CGAL import CGAL_Alpha_shape_2 as AS
a = AS.Alpha_shape_2()
but I don't see a way to put points in the Alpha Shape. It has no insert() method, like for instance the Triangulation classes, nor can I pass a list of Point_2's and a delaunay_triangulation_2 to the constructor, but this results in a NotImplementedError .
What am I missing here?
Thanks,
Ravi