1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-22 08:13:51 +02:00

full regeneration

This commit is contained in:
Pomax
2020-09-19 18:34:03 -07:00
parent ad872f83c5
commit 4c0e71cd4a
234 changed files with 1468 additions and 1376 deletions

View File

@@ -16,6 +16,9 @@ draw() {
setStroke("red");
curve.drawSkeleton(`lightblue`);
// instead of running an arclength summation, we
// just... sum the lengths of our line segments.
LUT.forEach((p1,i) => {
if (i===0) return;
let p0 = LUT[i-1];