Hello, would it be possible to export "all" the functions in this library so we can create custom/liter geoDelaunay for example ?
My use-case is to use geoDelaunay to create the edges on a big set of points but i am not interested in anything after edges = geo_edges(triangles, points),.
Looking at performance, ~50% of load is used of generating edges and the rest on neighbors,hulls,etc.
Something like this as a basic example is what I am thinking (with export to all the functions inside the .js files):
export * as rawGeoDelaunay from "./src/delaunay.js";
export * as rawGeoVoronoi from "./src/voronoi.js";
export * as rawGeoContour from "./src/contour.js";
Hello, would it be possible to export "all" the functions in this library so we can create custom/liter geoDelaunay for example ?
My use-case is to use
geoDelaunayto create the edges on a big set of points but i am not interested in anything afteredges = geo_edges(triangles, points),.Looking at performance, ~50% of load is used of generating edges and the rest on neighbors,hulls,etc.
Something like this as a basic example is what I am thinking (with export to all the functions inside the .js files):