Files
SCAD-Designs/Liar/queen.scad
2025-11-06 20:54:17 +01:00

44 lines
1.0 KiB
OpenSCAD

include <./card.scad>
$fn = 255;
n=1;
union() {
difference() {
color("purple")
std_playing_card(0.3);
color("green")
translate([5, 20, 0])
linear_extrude(height = 10, center = true)
scale([0.25,0.25,0])
import("queen.svg");
color("green")
translate([3, 3, 0])
linear_extrude(height = 10, center = true)
text("D", size = 10, font="Metamorphous:style=Regular");
color("green")
translate([47, 3, 0])
linear_extrude(height = 10, center = true)
scale([0.05, 0.05, 0])
import("queen_chess.svg");
color("red")
translate([3, 77, 0])
linear_extrude(height = 10, center = true)
scale([0.05, 0.05, 0])
import("queen_chess.svg");
color("green")
translate([47, 77, 0])
linear_extrude(height = 10, center = true)
text("D", size = 10, font="Metamorphous:style=Regular");
}
color("blue")
translate([0,0,-0.3])
std_playing_card(0.3);
}