chiark / gitweb /
pawn wip work around openscad issue https://github.com/openscad/openscad/issues/203
[reprap-play.git] / pawn.scad
index 41536392098230aaa6789602ac6f24d6552893ba..bbcb2b3184a02b0177340f934455fce8a1064bec 100644 (file)
--- a/pawn.scad
+++ b/pawn.scad
@@ -34,8 +34,8 @@ echo("height", htotal);
 
 d = 0.01;
 
-$fa=1;
-$fs=0.1;
+$fa=2;
+$fs=0.2;
 
 module SegmentBasisSquare(zmin, zmax, xmin){
   translate([xmin, zmin-d]) square([-xmin+d, zmax-zmin+d*2]);
@@ -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();