From 45c3cb6105bcda9910611f2af24ffd1305becf75 Mon Sep 17 00:00:00 2001 From: Tom Brewe Date: Mon, 22 Jul 2019 11:20:23 +0200 Subject: [PATCH 1/2] add 3D curve fit demo --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c5d84af..68be01b 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,10 @@ var bezierCurves = fitCurve(points, error); // where each element is [x, y] and elements are [first-point, control-point-1, control-point-2, second-point] ``` -You can play around with that in this [demo](http://soswow.github.io/fit-curve/demo). +You can play around with it in these demos: +- [2D curve fit](http://soswow.github.io/fit-curve/demo) +- [3D curve fit](https://nylki.github.io/fit-bezier-3d-visualization/) + ![demo](https://github.com/soswow/fit-curves/raw/master/demo-screenshot.png "Demo") From 583a1f75640ff1c72f6b8b067f4978977ed1ff63 Mon Sep 17 00:00:00 2001 From: Tom Brewe Date: Mon, 22 Jul 2019 19:15:58 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68be01b..7ba292a 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ var bezierCurves = fitCurve(points, error); // where each element is [x, y] and elements are [first-point, control-point-1, control-point-2, second-point] ``` -You can play around with it in these demos: +You can play around with that in these demos: - [2D curve fit](http://soswow.github.io/fit-curve/demo) - [3D curve fit](https://nylki.github.io/fit-bezier-3d-visualization/)