1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00
dotSCAD/src/midpt_smooth.scad

13 lines
317 B
OpenSCAD
Raw Normal View History

2019-06-09 10:48:45 +08:00
/**
* midpt_smooth.scad
*
* @copyright Justin Lin, 2019
* @license https://opensource.org/licenses/lgpl-3.0.html
*
2020-01-28 20:49:08 +08:00
* @see https://openhome.cc/eGossip/OpenSCAD/lib2x-midpt_smooth.html
2019-06-09 10:48:45 +08:00
*
**/
2020-01-27 15:16:38 +08:00
use <_impl/_midpt_smooth_impl.scad>;
2019-05-28 07:29:40 +08:00
2020-01-27 15:16:38 +08:00
function midpt_smooth(points, n, closed = false) = _midpt_smooth_impl(points, n, closed);