Updates
This commit is contained in:
25
tir_sportif/tripod/scad/04_legs.scad
Normal file
25
tir_sportif/tripod/scad/04_legs.scad
Normal file
@@ -0,0 +1,25 @@
|
||||
$fn=60;
|
||||
|
||||
include <BOSL2/std.scad>
|
||||
|
||||
leg_l=150;
|
||||
leg_h=16;
|
||||
leg_w=10;
|
||||
|
||||
module leg() {
|
||||
difference() {
|
||||
union() {
|
||||
cuboid([leg_l-leg_h/1.5,leg_h,leg_w], rounding=2);
|
||||
translate([68,0,0]) zcyl(l=leg_w, d=leg_h, rounding=2);
|
||||
translate([-68,0,0]) zcyl(l=leg_w, d=leg_h, rounding=2);
|
||||
}
|
||||
translate([68,0,0]) zcyl(l=leg_w, d=5.5, rounding=-1);
|
||||
translate([-68,0,0]) zcyl(l=leg_w, d=5.5, rounding=-1);
|
||||
}
|
||||
}
|
||||
|
||||
for(i=[0:1:2]) {
|
||||
translate([0, (leg_h+5)*i,0]) {
|
||||
leg();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user