A bit more printable and a bit more usable.

master
Robert "ar" Gerus 2013-06-08 04:02:03 +02:00
parent b0daed8e1c
commit 8609776aec
1 changed files with 12 additions and 6 deletions

View File

@ -19,9 +19,9 @@ module holding_cut_in(height, t_rad) {
}
module holding_insert_cut_in(height, t_rad) {
rotate([0,0,10])
translate([t_rad + 5, 0, height -5])
cube([10, 10, 50]);
rotate([0,0,15])
translate([t_rad + 7, 0, height -5])
cube([15, 20, 50]);
}
module holding_cut_ins(height, t_rad) {
@ -81,8 +81,14 @@ module inner_cup_form_holder_cross(t_rad) {
module inner_cup_form_holder_arm_hook(t_rad) {
cube([10,10,24]);
translate([0,-5,16])
cube([10,5,8]);
translate([0,-5,16]) {
difference() {
cube([10,5,8]);
translate([-0.5,5,0])
rotate([120,0,0])
cube([11,10,20]);
}
}
}
module inner_cup_form_holder_arm(t_rad) {
@ -95,7 +101,7 @@ module inner_cup_form_holder_arm(t_rad) {
}
module inner_cup_form_holder_arms(t_rad) {
for (i = [0:180:360]) {
for (i = [0:90:360]) {
rotate([0,0,i])
inner_cup_form_holder_arm(t_rad);
}