1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-02-23 00:52:30 +01:00
dotSCAD/src/midpt_smooth.scad
2021-02-24 21:09:54 +08:00

13 lines
317 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);