1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-02-12 03:14:23 +01:00
dotSCAD/src/trim_shape.scad
2020-01-28 20:49:08 +08:00

15 lines
336 B
OpenSCAD

/**
* trim_shape.scad
*
* @copyright Justin Lin, 2019
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib2x-trim_shape.html
*
**/
use <_impl/_trim_shape_impl.scad>;
function trim_shape(shape_pts, from, to, epsilon = 0.0001) =
_trim_shape_impl(shape_pts, from, to, epsilon);