Sven Oesau

Results 96 comments of Sven Oesau

Ok, I can confirm, that a recent commit fixed that voxel size bug. The surface is inverted, e.g., the backfaces show outside and the front faces are on the inside....

I managed to convert the vtk image to an inr image and attached it to the gist below. I added the inversion and I still get the triangulation error and...

I tried the parallel version using TBB. But I get crashes which seem to be caused by a race condition. When changing the input containers, PointRange and PolygonRange, to tbb::concurrent_vector...

[grid_simplify_point_set](https://doc.cgal.org/latest/Point_set_processing_3/group__PkgPointSetProcessing3Algorithms.html#ga7757ef9b3900e42fde26f5a0ac56e20f) may be what you are looking for. I does not move the input points. A 3d grid is applied and one point per cell is kept. You can choose...

> * and `t_storage` (I am not sure why it is an union instead of a plain `T`). I used the union originally to avoid construction of T in case...

> This class `Pair_optional_adaptor` has four data members: > > * its base class, of type `std::optional`, > * `T &first` and `bool second` for the compatibility with `std::pair`, >...

The method uses triangles if available. In case of polygonal faces, a triangle fan for all edges with the centroid is used. That is certainly not correct for non-convex faces....

There seems to be a bug in Surface Mesh due to the new properties. When I delete an edge, the halfedges of that edge are not marked as deleted. And...