Chris Brown
Chris Brown
> > > Can GTE create triangular meshes? (as CGAL does currently) I believe that is covered in the Delaunay3Mesh class. There is also Delaunay2Mesh, Delaunay3, Delaunay2, and ConstrainedDelaunay2
For computational geometry there is the following: 
For approximations (Some support RANSAC some do not) GTE supports the following  The following have the virtual functions required to support RANSAC  It looks simple enough to add...
Another large benefit in my mind is the extensive [documentation provided behind each algorithm](https://www.geometrictools.com/Documentation/Documentation.html) Along with his book  I haven't read it all but I have access to it...
Going through it more, at least the mathematics library is header only with no external requirements/dependencies. Since we will have to setup our own "fork" if we just include the...
I integrated the delauny triangulation and compared it against CGAL  Pros: - It was a really simple integration - Gives essentially the exact same result as CGAL Cons: -...
Not exactly the same issue but this previous issue https://github.com/CloudCompare/CloudCompare/issues/1039 had the following solution, although I would suspect needing to change the display number > Another common suggestion is to...
But you are definitely using the export command first? `export DISPLAY:=yourScreenNumber`
I've seen something similar before when I had an invalid bounding box (I believe, it might have been invalid coordinates in the cloud). I was working with the cloud in...
My intent is to add command line mode, my thought was two options, 1 take in a script as a file path, 2 take in a script directly on the...