Convexhull-3D-Implementation-of-incremental-convexhull-algorithm icon indicating copy to clipboard operation
Convexhull-3D-Implementation-of-incremental-convexhull-algorithm copied to clipboard

c++ implementation of 3D incremental convell hull algorthim

Results 4 Convexhull-3D-Implementation-of-incremental-convexhull-algorithm issues
Sort by recently updated
recently updated
newest added

int MinimumZoneFitPlane(const Point* pointsIn, int lengthIn, PlaneKernel* outLseg) { ConvexHull hull(pointsIn, lengthIn); std::list faces = hull.GetFaces(); std::vector vertexs = hull.GetVertices(); std::vector pointT(vertexs.size()); for (int i = 0; i < vertexs.size();...

I have some trouble with "warning: property violated!" I forked your repo so I could try to improve some things. I used commit https://github.com/milasudril/Convexhull-3D-Implementation-of-incremental-convexhull-algorithm/commit/374f76e5d9e7663662677050e4030d49f5010376 I get an error when trying...

In case you have a hash collision when computing the hash of the pair of points, you will overwrite existing entries. Instead of using the hash as a key, you...

It is not recommended to compare floating point numbers with ==