From 3e0d2e49610721d0ff9eccbaf7ee2eb1e92d03a6 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Wed, 1 May 2019 00:09:04 -0700 Subject: [PATCH] Fixed example image for 3D hull --- hull.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hull.scad b/hull.scad index 73771ab..e36ba51 100644 --- a/hull.scad +++ b/hull.scad @@ -43,7 +43,7 @@ function hull(points) = let(two_d = len(points[0]) == 2) two_d? hull2d_path(poin // pts = [[-10,-10], [0,10], [10,10], [12,-10]]; // hull_points(pts); // Example: -// ptr = [for (phi = [30:60:150], theta = [0:60:359]) spherical_to_xyz(10, theta, phi)]; +// pts = [for (phi = [30:60:150], theta = [0:60:359]) spherical_to_xyz(10, theta, phi)]; // hull_points(pts); module hull_points(points, fast=false) { assert(is_list(points));