Accurately invert text
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Bruder 2020-04-29 16:26:33 +02:00
parent d8e67ab7f2
commit 8b38f192d5
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F

View file

@ -1,18 +1,22 @@
$fn=64; $fn=64;
//$fn=32; //$fn=32;
length = 16.67; length = 50/3;
width = 50; width = 50;
name_length = 13.33; name_length = 40/3;
name_width = 40; name_width = 40;
height = 2; height = 2;
height_plate = 1; height_plate = 1;
module name_file() { module name_file() {
translate([(width-name_width)/2, (length-name_length)/2, 0]) difference() { translate([(width-name_width)/2, (length-name_length)/2, 0]) {
square([name_width, name_length]); difference() {
hull() {
resize([name_width, name_length, 0]) import("{{ name}}.dxf"); resize([name_width, name_length, 0]) import("{{ name}}.dxf");
} }
resize([name_width, name_length, 0]) import("{{ name }}.dxf");
}
}
} }
module box(height) { module box(height) {