This commit is contained in:
2025-11-06 20:54:17 +01:00
parent 1300e7dd8d
commit 00e55d3a8d
37 changed files with 502864 additions and 11 deletions

42
Liar/chaos.scad Normal file
View File

@@ -0,0 +1,42 @@
include <./card.scad>
$fn = 255;
n=1;
union() {
difference() {
color("purple")
std_playing_card(0.3);
color("green")
translate([6, 21, 0])
linear_extrude(height = 10, center = true)
scale([0.26,0.26,1])
import("evil.svg");
color("green")
translate([3, 3, 0])
linear_extrude(height = 10, center = true)
text("C", size = 10, font="Metamorphous:style=Regular");
color("green")
translate([46, 3, 0])
linear_extrude(height = 10, center = true)
scale([0.05, 0.05, 0])
import("fire.svg");
color("green")
translate([3, 77, 0])
linear_extrude(height = 10, center = true)
scale([0.05, 0.05, 0])
import("fire.svg");
color("green")
translate([46, 77, 0])
linear_extrude(height = 10, center = true)
text("C", size = 10, font="Metamorphous:style=Regular");
}
color("blue")
translate([0,0,-0.3])
std_playing_card(0.3);
}