From: Ian Jackson Date: Wed, 3 Oct 2012 17:32:19 +0000 (+0100) Subject: pawn wip bugfixes X-Git-Tag: filamentspool-v2-release~757 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=e94b783e6ed98e7922daa8c4c3025c9c8f42be63;ds=sidebyside pawn wip bugfixes --- diff --git a/pawn.scad b/pawn.scad index 4153639..6f1bf99 100644 --- a/pawn.scad +++ b/pawn.scad @@ -61,13 +61,13 @@ module PawnTemplate(){ ConvexSegment( xc5, zc5, r5, z5, z4); polygon([[x6, z6], [x5, z5+d], - [d, z5], + [d, z5+d], [d, z6]]); } module Pawn(h=htotal){ scale(h/htotal) { - rotate_extrude($fn=100){ + rotate_extrude(convexity=10, $fn=50){ assign($fn=undef){ PawnTemplate(); } @@ -76,3 +76,4 @@ module Pawn(h=htotal){ } Pawn(h=20); +//PawnTemplate();