$fn=20;
module DoText() { translate([-10,-10,0]) linear_extrude(height=15) text("A",20,"Arial:style=Bold",center=true); } difference() { minkowski() { DoText(); cube([1,1,1],center=true); } DoText(); translate([0,0,10+10])cube([200,200,20],center=true); }
// Rendering preview gives some weird artifacts, with F6 it looks like it should
$fn=20;
module DoText()
{
translate([-10,-10,0])
linear_extrude(height=15) text("A",20,"Arial:style=Bold",center=true);
}
difference()
{
minkowski()
{
DoText();
cube([1,1,1],center=true);
}
DoText();
translate([0,0,10+10])cube([200,200,20],center=true);
}
// Rendering preview gives some weird artifacts, with F6 it looks like it should