CGAL / cgal

The public CGAL repository, see the README below
https://github.com/CGAL/cgal#readme
Other
4.9k stars 1.38k forks source link

Future tasks for Alpha_shapes_[23] #2623

Open MaelRL opened 6 years ago

MaelRL commented 6 years ago

A bunch of feature requests for the Alpha Shapes packages from @mglisse.

MaelRL commented 6 years ago
mglisse commented 5 years ago
* functions to get the filtration value of a simplex

In 2D, from an edge iterator ei, I can get an Interval_3 ei->first->get_ranges(ei->second) (find_interval is private). And apparently, the value I need is then first, except if that's UNDEFINED (i.e. -2) in which case I want second (I didn't check very carefully). But that's using quite a bit of undocumented information. Also, the use of -2 as magic value seems dangerous to me if we can have weighted points with negative weights.

mglisse commented 1 year ago

(not for me, but based on https://stackoverflow.com/q/76720956/1918193 )

(and from https://stackoverflow.com/q/76669841/1918193 )