aboutsummaryrefslogtreecommitdiff
path: root/structure/parts/foot.scad
blob: ac513ddfb1da4f4f3c60bb6feededc968a5ecc36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
include <../conf/parameters.scad>

module foot() {

color("white")
difference() {

	rotate([0,90,0])
	difference() {
		cylinder(foot_length,d=foot_outer, center=true);
		cylinder(foot_length+epsilon,d=foot_inner, center=true);
	}

	translate([-stand_width/2,0,0])
	cylinder(foot_outer,d=stand_diameter,center=false);

	translate([stand_width/2,0,0])
	cylinder(foot_outer,d=stand_diameter,center=false);

}
}

foot();