From 252656eb738841837c991c9fe7274d54e22afda3 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 29 Apr 2017 10:04:52 +0800 Subject: [PATCH] hulling the polyhedron is enough --- src/function_grapher.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/function_grapher.scad b/src/function_grapher.scad index 183b7305..fbc977ad 100644 --- a/src/function_grapher.scad +++ b/src/function_grapher.scad @@ -44,16 +44,16 @@ module function_grapher(points, thickness, style = "FACES", slicing = "SLASH") { pts_faces1 = tri_shell_points(top_tri1); pts_faces2 = tri_shell_points(top_tri2); - hull() { - polyhedron( + + hull() polyhedron( points = pts_faces1[0], faces = pts_faces1[1] ); - polyhedron( + + hull() polyhedron( points = pts_faces2[0], faces = pts_faces2[1] ); - } } module tri_to_lines(tri1, tri2) {