diff --git a/src/experimental/demo/voronoi_lines_demo.scad b/src/experimental/demo/voronoi_lines_demo.scad index 7a8a55dd..529cfe7e 100644 --- a/src/experimental/demo/voronoi_lines_demo.scad +++ b/src/experimental/demo/voronoi_lines_demo.scad @@ -5,6 +5,12 @@ use ; pt_nums = 50; width = 1; points = [for(i = [0:pt_nums - 1]) rands(-50, 50, 2)]; + +hull_pts = convex_hull(points); +hull_polyline2d( + concat(hull_pts, [hull_pts[0]]), + width = width, $fn = 4 +); intersection() { for(line = voronoi_lines(points)) { @@ -14,15 +20,11 @@ intersection() { $fn = 4 ); } - hull() - #for(p = points) { - translate(p) - circle(.5); - } + + polygon(hull_pts); } -hull_pts = convex_hull(points); -hull_polyline2d( - concat(hull_pts, [hull_pts[0]]), - width = width, $fn = 4 -); \ No newline at end of file +#for(p = points) { + translate(p) + circle(.5); +} \ No newline at end of file