Skip to content

Commit

Permalink
quick fix for jigs #2
Browse files Browse the repository at this point in the history
  • Loading branch information
goldfishlaser committed Jul 19, 2024
1 parent 070837a commit 16849a1
Show file tree
Hide file tree
Showing 2 changed files with 43,573 additions and 43,629 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ color("grey") rotate ([90,0,0])translate([magnet_position_x,magnet_position_y,ma

jig_w=17; //diff=2.5 to add room for slot
jig_h=2-.5;
jig_l=7;
jig_l=6.25;

slot_w=.75;
slot_h=jig_h/2;
Expand Down Expand Up @@ -234,29 +234,29 @@ module var(){

module slot(){translate([0,0,slot_h])cube(size=[slot_w,slot_l,slot_h], center=false);}

module jigwall(){translate([0,0,jigwall_h+.1])cube(size=[jigwall_w,jigwall_l,jigwall_h], center=false);}
module jigwall(){translate([-.25,0,jigwall_h+.1])cube(size=[jigwall_w,jigwall_l,jigwall_h], center=false);}

module jig(){
j_d=20; //distance between jigs
translate([0,0,.7])slot();
translate([jig_w-.75,0,.7])slot();
difference(){
cube(size = [jig_w,jig_l,jig_h],center=false);
translate([1.5,3.5,-2.25])pogos();
translate([1.5,3,-2.25])pogos();
} //diff 1.5 to center

translate([0,j_d,0])

difference(){
cube(size = [jig_w,jig_l,jig_h],center=false);
translate([1.5,3.5,-2.25])pogos();
translate([1.5,3,-2.25])pogos();
;
}
translate([.75,j_d,.6])jigwall();
translate([1.25,j_d,.6])jigwall();
translate([jig_w-1.5,j_d,.6])jigwall();

var();

}
//jig();

Expand Down
Loading

0 comments on commit 16849a1

Please sign in to comment.