diff options
| author | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2013-12-01 13:35:49 +0100 | 
|---|---|---|
| committer | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2013-12-01 13:35:49 +0100 | 
| commit | 1db4e5a7704d14020bd3a21de22188757311779e (patch) | |
| tree | 00b04bff671d4355e304f97275d0f3263e378602 /src | |
| parent | 9932d0714b20e308cf441293be9275faa11dff5d (diff) | |
Fix coin value orientation
Diffstat (limited to 'src')
| -rw-r--r-- | src/piecepack.scad | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/piecepack.scad b/src/piecepack.scad index ad0abf7..c0fb04f 100644 --- a/src/piecepack.scad +++ b/src/piecepack.scad @@ -22,11 +22,11 @@ module tile(suite,value) {  module coin(suite,value) {      difference() {          cylinder(r=10, h=3); -        translate([0,0,-0.5]) linear_extrude(height=1.5) scale(0.4)  +        translate([0,0,2]) linear_extrude(height=1.5) scale(0.4)               translate([-25,-25,0])              import(str("../graphics/",suite,".dxf"),center=true);          if (value != "null") { -            translate([0,0,2]) linear_extrude(height=1.5) scale(0.4) +            translate([0,0,1]) rotate([0,180,0]) linear_extrude(height=1.5) scale(0.4)                  translate([-25,-25,0])                  import(str("../graphics/",value,".dxf"),center=true);          } | 
