Added
This commit is contained in:
42
Liar/master.scad
Normal file
42
Liar/master.scad
Normal file
@@ -0,0 +1,42 @@
|
||||
include <./card.scad>
|
||||
|
||||
$fn = 255;
|
||||
n=0.23;
|
||||
union() {
|
||||
difference() {
|
||||
color("purple")
|
||||
std_playing_card(0.3);
|
||||
|
||||
color("green")
|
||||
translate([6, 23, 0])
|
||||
linear_extrude(height = 10, center = true)
|
||||
scale([n,n,0])
|
||||
import("master.svg");
|
||||
|
||||
color("green")
|
||||
translate([3, 3, 0])
|
||||
linear_extrude(height = 10, center = true)
|
||||
text("M", 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("pistol.svg");
|
||||
|
||||
color("green")
|
||||
translate([3, 77, 0])
|
||||
linear_extrude(height = 10, center = true)
|
||||
scale([0.05, 0.05, 0])
|
||||
import("pistol.svg");
|
||||
|
||||
color("green")
|
||||
translate([43, 77, 0])
|
||||
linear_extrude(height = 10, center = true)
|
||||
text("M", size = 10, font="Metamorphous:style=Regular");
|
||||
}
|
||||
|
||||
color("blue")
|
||||
translate([0,0,-0.3])
|
||||
std_playing_card(0.3);
|
||||
}
|
||||
Reference in New Issue
Block a user