This repository has been archived on 2020-04-29. You can view files and clone it, but cannot push or open issues/pull-requests.
namensschilder/namensschild.scad.j2

45 lines
1007 B
Plaintext
Raw Normal View History

2019-03-27 20:30:59 +01:00
$fn=64;
//$fn=32;
2020-04-29 16:26:33 +02:00
length = 50/3;
2019-03-27 20:30:59 +01:00
width = 50;
2020-04-29 16:26:33 +02:00
name_length = 40/3;
2019-03-28 18:21:40 +01:00
name_width = 40;
2019-03-27 20:30:59 +01:00
height = 2;
height_plate = 1;
module name_file() {
2020-04-29 16:26:33 +02:00
translate([(width-name_width)/2, (length-name_length)/2, 0]) {
difference() {
hull() {
resize([name_width, name_length, 0]) import("{{ name}}.dxf");
}
resize([name_width, name_length, 0]) import("{{ name }}.dxf");
}
2019-03-27 20:30:59 +01:00
}
}
2019-03-28 18:21:40 +01:00
module box(height) {
hull() {
for(x=[0, width]) {
for(y=[0, length]) {
translate([x, y, 0]) linear_extrude(height) circle(r=1);
2019-03-27 20:30:59 +01:00
}
}
2019-03-28 18:21:40 +01:00
}
}
2019-03-27 20:30:59 +01:00
2019-03-28 18:21:40 +01:00
difference() {
union() {
difference() {
box(height);
translate([1.5, 1.5, height_plate]) resize([width-1, length-1, height-height_plate]) box(height-height_plate);
}
2019-03-27 20:30:59 +01:00
linear_extrude(height) {
name_file();
}
}
2019-03-28 19:15:35 +01:00
translate([width-2.5, length-2.5, 0]) linear_extrude(height_plate) circle(r=1.9);
2019-03-27 20:30:59 +01:00
}