From 1aa3a8b5f0afa0c50695a8c2ef58affcc32d1278 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 11:22:16 +0200 Subject: [PATCH] Refactor function definitions in paths.ts --- src/document/paths.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/document/paths.ts b/src/document/paths.ts index b2869fcd..b9e77590 100644 --- a/src/document/paths.ts +++ b/src/document/paths.ts @@ -229,9 +229,6 @@ function lerpVec3(start: Vec3, end: Vec3, t: number): Vec3 { }; } -function buildSmoothedPolylinePoints( - path: ResolvedPathLike -): Vec3[] { function buildSmoothedPolylinePoints( path: ResolvedPathLike ): Vec3[] { @@ -276,9 +273,6 @@ function buildSmoothedPolylinePoints( return points; } -function buildSmoothedPathSamples( - path: ResolvedPathLike -): SmoothedPathSample[] { function buildSmoothedPathSamples( path: ResolvedPathLike ): SmoothedPathSample[] {