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

14
Liar/card.scad Normal file
View File

@@ -0,0 +1,14 @@
module rounded_square( width, radius_corner ) {
translate( [ radius_corner, radius_corner, 0 ] )
minkowski() {
square( width - 2 * radius_corner );
circle( radius_corner );
}
}
module std_playing_card(height) {
linear_extrude(height)
scale([0.6,0.9,1])
rounded_square(100,10);
}