1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/src/trim_shape.scad

15 lines
335 B
OpenSCAD
Raw Normal View History

2019-06-09 10:48:45 +08:00
/**
* trim_shape.scad
*
* @copyright Justin Lin, 2019
* @license https://opensource.org/licenses/lgpl-3.0.html
*
2021-02-24 21:09:54 +08:00
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-trim_shape.html
2019-06-09 10:48:45 +08:00
*
**/
2022-06-06 13:11:46 +08:00
use <_impl/_trim_shape_impl.scad>
2019-05-29 10:46:23 +08:00
function trim_shape(shape_pts, from, to, epsilon = 0.0001) =
2020-01-27 16:34:09 +08:00
_trim_shape_impl(shape_pts, from, to, epsilon);