From 1e2cd1684d2048858105bfa1205370ce75047052 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 15 Feb 2014 12:30:21 +0000 Subject: [PATCH] wardrobe-hook: wip, fix FArcSegment --- wardrobe-hook.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wardrobe-hook.scad b/wardrobe-hook.scad index b247bd0..38efdd9 100644 --- a/wardrobe-hook.scad +++ b/wardrobe-hook.scad @@ -5,12 +5,12 @@ module FArcSegment_mask(beta) { rotate(i*beta/4) polygon([[0, 0], [1, 0], - [cos(beta), sin(beta)]]); + [cos(beta/4), sin(beta/4)]]); } } module FArcSegment(xc,yc,inrad,outrad,alpha,delta) { - translate(xc,yc) { + translate([xc,yc]) { intersection() { difference() { circle(r=outrad); -- 2.30.2