/** * 🚀 Moonshot: Simple incremental Delaunay Triangulation (Bowyer-Watson) * * Used to create a topological mesh covering the image target features. */ export function triangulate(points: any): number[][]; /** * Extract edges from triangles for Mass-Spring logic */ export function getEdges(triangles: any): number[][];