1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 06:08:31 +01:00
dotSCAD/src/midpt_smooth.scad
2022-06-06 13:11:46 +08:00

13 lines
316 B
OpenSCAD

/**
* midpt_smooth.scad
*
* @copyright Justin Lin, 2019
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-midpt_smooth.html
*
**/
use <_impl/_midpt_smooth_impl.scad>
function midpt_smooth(points, n, closed = false) = _midpt_smooth_impl(points, n, closed);