refactor ripple_stencil into separate module

This commit is contained in:
Michael Sippel 2024-10-07 21:25:35 +02:00
parent 9af9463dbf
commit d150fea651
Signed by: senvas
GPG key ID: F96CF119C34B64A6

View file

@ -47,10 +47,7 @@ module handle_shape(l=0) {
} }
} }
module handle() { module ripple_stencil() {
difference() {
handle_shape();
translate([0,0,-1]) { translate([0,0,-1]) {
for( z = [0:10] ) { for( z = [0:10] ) {
translate([0,0,z*(LEN-5)/10]) { translate([0,0,z*(LEN-5)/10]) {
@ -71,6 +68,13 @@ module handle() {
translate([0,0,-8]) translate([0,0,-8])
cylinder(h=10, d=DIAM-8, $fn=64); cylinder(h=10, d=DIAM-8, $fn=64);
} }
}
module handle() {
difference()
{
handle_shape();
ripple_stencil();
} }
} }