1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/src/midpt_smooth.scad

13 lines
316 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
*
2021-02-24 21:09:54 +08:00
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-midpt_smooth.html
2019-06-09 10:48:45 +08:00
*
**/
2022-06-06 13:11:46 +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);