shape_path_extend.scad
1 /** 2 * shape_path_extend.scad 3 * 4 * @copyright Justin Lin, 2017 5 * @license https://opensource.org/licenses/lgpl-3.0.html 6 * 7 * @see https://openhome.cc/eGossip/OpenSCAD/lib3x-path_extend.html 8 * 9 **/ 10 11 use <_impl/_shape_path_extend_impl.scad> 12 13 function shape_path_extend(stroke_pts, path_pts, scale = 1.0, closed = false) = 14 _shape_path_extend_impl(stroke_pts, path_pts, scale, closed);