Blake Thompson
Blake Thompson
@rmarianski no we are not planning on making a python wrapper for it, but it should be really fast if it was wrapped in a python.
As this is basically a side project for me right now its been hard to carve out enough time to get this done recently. I am about halfway done with...
@jeremyabel could you provide an example layout of how your point data is organized?
@jeremyabel you should see the branch I am using in #14 if that layout helps you any. I didn't yet make the container for the point type completely customize-able but...
Some more debugging screenshots to share context: `legalize()` currently takes up the vast majority of processing time. After that the main loop takes up the second most amount of time,...
@mourner I am not sure it does currently provide an improvement yet. Still blocked primarily in performance in the single section above, need to analyze current master branch as well...
I might suggest the following: ```C++ // structure internal to library // used for storing all our data that is relative to each index struct TriangulatePoint { std::size_t triangle; std::size_t...
Sorry, I have been on vacation. >do I need to do something special to avoid copying of vectors in this case? like implementing move constructor in DelaunatorResult? in case if...
@delfrrr I am not sure why RVO would not be available with your example assuming that `delaunator::triangulate()` was designed to support it.
I assume this is from the fact that I selected the `std::numeric_limits::max()` to be our magic value for indexes that are not yet assigned. Therefore, at some point we are...