From 3397d68247b91fae25e4ca6979f2d82329176702 Mon Sep 17 00:00:00 2001 From: Gabriel Harel Date: Mon, 18 Sep 2023 22:37:12 -0500 Subject: [PATCH] update copy --- demo/content.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/demo/content.ts b/demo/content.ts index 01c2bfb..ff48079 100644 --- a/demo/content.ts +++ b/demo/content.ts @@ -733,9 +733,10 @@ addCanvas( } }); - return `Points cannot be swapped without resulting in a different shape. However, a likely - enough optimal order can be selected by shifting the points and comparing the point - position deltas.`; + return `Once both shapes have the same amount of points, an ordering of points which reduces + the total amount of distance traveled by the points during the transition needs to be + found. Because the shapes are closed, the order of the points doesn't visually affect + the shape and this is a safe transformation.`; }, (ctx, width, height, animate) => { const period = Math.PI * Math.E * 1000;