aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD. Delmar Davis <don@suspectdevices.com>2023-06-29 11:50:39 -0400
committerGitHub <noreply@github.com>2023-06-29 11:50:39 -0400
commitc8d2855540fd3ea35b43c9fa366081e6ca2d5898 (patch)
tree3af8fe0017f8d5cde193dae17d158b1c5aac7577
parentca36ca841b6c8f06c69399ef3684aaed8642377c (diff)
parent19aeebfffd0eaf0e219dfe95f270b21e6a464d4c (diff)
Merge pull request #3 from feurig/rev2
flipp
-rw-r--r--postcard.scad10
1 files changed, 7 insertions, 3 deletions
diff --git a/postcard.scad b/postcard.scad
index e3ada4d..d1fb04b 100644
--- a/postcard.scad
+++ b/postcard.scad
@@ -1,8 +1,12 @@
postCardHeight=105;
postCardWidth=150;
+translate([0,postCardHeight,0]){
+rotate([-180,0,0]){
+difference(){
square([postCardWidth,postCardHeight] , center=false);
-translate([postCardWidth/2,0,0]){
-rotate([0,0,90]){
+translate([postCardWidth/2,5,0]){
+rotate([180,0,90]){
text(text="3DAngst 7900 N Washburne, Ave PDX OR 97217",size=3,font="Comic Sans");
-}} \ No newline at end of file
+}}
+}}} \ No newline at end of file