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

module support_plate() {

color("silver")
difference() {

	cube([support_width, support_width, support_height], true);

	cylinder(support_height+epsilon,d=support_diameter, center=true);

	for (i = [0 : 3]) {
		rotate([0,0,i*90])
		translate([support_inner/2, support_inner/2,0])
		cylinder(support_height+epsilon,d=support_diameter, center=true);
	}
}
}

support_plate();