1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
Files
dotSCAD/undocumented_features/midpt_smooth_demo.scad
2019-05-30 08:11:34 +08:00

14 lines
331 B
OpenSCAD

include <hull_polyline2d.scad>;
include <shape_taiwan.scad>;
include <bijection_offset.scad>;
include <midpt_smooth.scad>;
taiwan = shape_taiwan(100, .5);
sm = midpt_smooth(taiwan, 1, true);
*translate([10, 0, 0]) hull_polyline2d(shape_taiwan(100), .1);
translate([10, 0, 0]) hull_polyline2d(sm, .1);
echo(len(taiwan));