This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Clusters a number of Paper Elements as Paper Groups. | |
| * Clustering is based on distance between elements, | |
| * using K-means clustering. | |
| * - This method DOES NOT preserve z-order of items, so use with caution | |
| * | |
| * | |
| * - Dependent on clusterfck.js. | |
| * See: https://github.com/NathanEpstein/clusters | |
| * and download browser .js file. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Catmull-Rom interpolating splines in ES6 | |
| ---- | |
| authors: Nicholas Kyriakides (2017) & Unknown | |
| from: "A class of local interpolating splines" | |
| Catmull, Edwin; Rom, Raphael | University of Utah, 1974 | |
| Barnhill, Robert E.; Riesenfeld, Richard F. (eds.). | |
| Computer Aided Geometric Design. | |
| @summary |
NewerOlder