chiark / gitweb /
number-tokens: from v1
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 22 Feb 2026 20:28:31 +0000 (20:28 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 22 Feb 2026 20:28:31 +0000 (20:28 +0000)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
number-tokens.scad

index d4f989058102b04f0be71632b20eee7d48eb9663..6023d7840d32bb1c97d245718a78977f106e627d 100644 (file)
@@ -12,7 +12,7 @@ textsize = 56 * 25.4/72;
 joinwidth=1.0;
 
 module OneToken(text) {
-  linextr(0, tokenthick) {
+  rotate([180,0,0]) linextr(0, tokenthick) {
     difference(){
       circle(r= tokenrad);
       text(text, size = textsize, font = "Courier:style=Bold",
@@ -34,6 +34,6 @@ module Token3() { ////toplevel
 
 module Token4() { ////toplevel
   OneToken("4") {
-    rectfromto([-8, 0], [4, -joinwidth]);
+    rectfromto([-8, 0], [4, joinwidth]);
   }
 }