From a026897138106f3d58f5c97e0e818192c6393726 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 12 Jul 2019 13:15:39 +0100 Subject: [PATCH] docs(examples): add reference link --- examples/poly-spline/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/poly-spline/src/index.ts b/examples/poly-spline/src/index.ts index 9ecb30d0d2..f1f88c686a 100644 --- a/examples/poly-spline/src/index.ts +++ b/examples/poly-spline/src/index.ts @@ -82,6 +82,7 @@ const app = ( _uniScale: Stream ) => ({ poly, mode, uniform, scale, uniScale }: any) => { // reconstruct poly as cubic curve segments + // reference: https://github.com/thi-ng/umbrella/tree/develop/packages/geom-splines#polygon-to-cubic-curve-conversion const cubics = asCubic(poly, { breakPoints: mode, scale: scale * (uniform ? uniScale : 1),