hackathon_awards/2024/hackathon2024trophy-inscription.scad

29 lines
943 B
OpenSCAD
Raw Normal View History

2024-07-25 14:58:36 +00:00
/**
2024-07-27 09:34:50 +00:00
Sign for the trophy.
Don't forget to scale if want other dimensions.
Author: Artur Kerge
2024-07-25 14:58:36 +00:00
**/
//s=1;
//scale([s,s,0])
use <../typefaces/D-DIN.otf>
use <../typefaces/D-DIN-Bold.otf>
use <../typefaces/D-DINExp.otf>
use <../typefaces/D-DIN-Bold.otf>
2024-07-25 14:58:36 +00:00
difference(){
color("pink") square([60,42], center=true);
union(){
scale([0.35,0.35,0]) translate([-90,6,1]) import("../logotypes/k-space-ee.svg", dpi=300);
translate([0,3.5,0])
text("Hackathon 2024", halign="center", valign="bottom", size=5.1, font="D\\-DIN:style=Regular");
translate([0,1,0])
text("Firstname", halign="center", valign="top", size=6, font="D\\-DIN:style=DIN\\-Bold");
translate([0,-6.5,0])
text("Lastname", halign="center", valign="top", size=6, font="D\\-DIN:style=DIN\\-Bold");
translate([0,-14,0])
text("Best In Showing Up", halign="center", valign="top", size=4, font="D\\-DIN Exp:style=Regular");
}
2024-07-25 14:58:36 +00:00
}