From 3d2940815522e3d643b3ecac8866231b3bb20dd9 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 6 Oct 2019 10:06:06 +0800 Subject: [PATCH] remove offset --- examples/maze/heart_maze.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/maze/heart_maze.scad b/examples/maze/heart_maze.scad index 27d75149..ada68020 100644 --- a/examples/maze/heart_maze.scad +++ b/examples/maze/heart_maze.scad @@ -40,9 +40,9 @@ module ring_heart(radius, thickness) { module ring_heart_sector(radius, angle, thickness, width) { intersection() { - ring_heart(radius - 0.1, thickness + 0.2); + ring_heart(radius, thickness + 0.2); rotate([0, 0, angle]) - line2d([0, 0], [0, radius * 3 + width], width); + line2d([0, 0], [0, radius * 3 + width + thickness], width); } }