First iteration, lets see if it works.

This commit is contained in:
Frank Weggelaar 2025-06-20 16:13:12 +02:00
parent 059166258b
commit 9c00adfd00
49 changed files with 130631 additions and 0 deletions

35
crystal-drill-guide.scad Normal file
View file

@ -0,0 +1,35 @@
// Cut size
_cutwidth = 40;
_cutlength = 40;
// Base size
height = 10;
width = 117+4;
length = _cutlength+4;
difference () {
linear_extrude (height) {
difference () {
square([width,length], center=false); //Base
};
};
translate ([(2),0,2])
linear_extrude (height) {
difference () {
square([width-4,length], center=false);
};
};
translate ([(width/2-_cutwidth/2),(2)])
linear_extrude (2) {
difference () {
square([_cutwidth,_cutlength], center=false);
};
};
difference () {
};
};