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
| /* | |
| ============================================================================== | |
| ChebyshevApproximation.h | |
| Creates Chebyshev-polynomial approximations for smooth 1d and 2d function | |
| lambdas and emits C++ source code to use in place of the lambda. | |
| More info and examples: https://apulsoft.ch/blog/chebyshev-approximation/ | |
| (c) 2023 Adrian Pflugshaupt |
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
| /* | |
| ============================================================================== | |
| Catenary.h | |
| Created: 30 Jan 2021 7:26:28pm | |
| Author: Adrian Pflugshaupt | |
| Calculates points on a catenary curve between two 2d points | |
| with addLength "rope" added to the distance. |