Skip to content

Instantly share code, notes, and snippets.

View ksmithdev's full-sized avatar
🏠
Working from home

Kyle Smith ksmithdev

🏠
Working from home
  • Grand Rapids, MI
View GitHub Profile
@ksmithdev
ksmithdev / Coin.scad
Created May 29, 2023 20:18
Used to create a standing coin with sides
$fn=10;
union() {
difference() {
cylinder(h=4, r=12.5, center=false);
cylinder(h=1, r=10.5, center=false);
translate([0,0,3])
cylinder(h=1, r=10.5, center=false);
}
@ksmithdev
ksmithdev / relief_generator.scad
Created May 29, 2023 20:16
Used to generate an STL coin face
layer_height = 0.2;
model_height = 1;
union() {
for (i=[0:layer_height:model_height]) {
translate([0,0,i])
linear_extrude(layer_height)
offset(-i*0.6)
resize([10,10,layer_height])
import("Symbol.svg", center = true);