Accurately invert text
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
d8e67ab7f2
commit
8b38f192d5
|
@ -1,17 +1,21 @@
|
||||||
$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() {
|
||||||
resize([name_width, name_length, 0]) import("{{ name }}.dxf");
|
hull() {
|
||||||
|
resize([name_width, name_length, 0]) import("{{ name}}.dxf");
|
||||||
|
}
|
||||||
|
resize([name_width, name_length, 0]) import("{{ name }}.dxf");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue