diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/piecepack.scad | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/piecepack.scad b/src/piecepack.scad index b35c6ad..0947862 100644 --- a/src/piecepack.scad +++ b/src/piecepack.scad @@ -104,6 +104,7 @@ module pyramid(w,h,suite,value) { difference() { plain_pyramid(w,h,0); plain_pyramid(w-4,h-4,-0.01); + translate([0,0,h]) cube(7, center=true); if ( suite != "null") { translate([0,-w/2+1,0]) rotate([atan(h/(w/2)),0,0]) linear_extrude(height=2) scale(0.9*w/50) translate([-25,0,0]) import(str("../graphics/",suite,".dxf")); |