chiark / gitweb /
pawn wip bugfixes
[reprap-play.git] / pawn.scad
index 41536392098230aaa6789602ac6f24d6552893ba..6f1bf992d1135d329acca796f8c01718a6cde050 100644 (file)
--- 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();