animated trail for lasso selection

This commit is contained in:
Ryan Di 2025-02-05 20:59:51 +11:00
parent 52eaf64591
commit 4f74274d04
10 changed files with 424 additions and 4 deletions

View file

@ -239,7 +239,7 @@ export const getCurveShape = <Point extends GlobalPoint | LocalPoint>(
};
};
const polylineFromPoints = <Point extends GlobalPoint | LocalPoint>(
export const polylineFromPoints = <Point extends GlobalPoint | LocalPoint>(
points: Point[],
): Polyline<Point> => {
let previousPoint: Point = points[0];