midpt_smooth.scad
1 /** 2 * midpt_smooth.scad 3 * 4 * @copyright Justin Lin, 2019 5 * @license https://opensource.org/licenses/lgpl-3.0.html 6 * 7 * @see https://openhome.cc/eGossip/OpenSCAD/lib3x-midpt_smooth.html 8 * 9 **/ 10 11 use <_impl/_midpt_smooth_impl.scad> 12 13 function midpt_smooth(points, n, closed = false) = _midpt_smooth_impl(points, n, closed);