Skip to content

Commit

Permalink
Uprava #275 límce s vytvoreni parametru
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-dvorak committed Dec 9, 2019
1 parent 86272bf commit b2fa021
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion parameters.scad
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,10 @@ width_of_engine_holder = 83;

//Top Cover Division - dělení horního krytu pro tisk
top_cover_division = [0, 50, 150, 290, 435, 580, hull_x_size];

top_cover_strip_zposition = 0;
//Bottom Cover Division - dělení dolního krytu pro tisk
bottom_cover_division = [0,145,290,365, 470, hull_x_size];
bottom_cover_strip_zposition = -15;
// zkrácená část pro payload pro testovací tisk
//bottom_cover_division = [0,200,250,365, 470, hull_x_size];

Expand Down
8 changes: 4 additions & 4 deletions src/888_1005.scad
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ module 888_1005(draft){
intersection(){
difference(){
union(){
translate([0,-hull_z_size/2, 0])
translate([0,-hull_z_size/2, top_cover_strip_zposition])
cube([hull_x_size, hull_z_size, hull_wall_thickness*2 + 2*global_clearance]); // horni lem
translate([0,-hull_z_size/2, -15])
translate([0,-hull_z_size/2, bottom_cover_strip_zposition])
cube([hull_x_size, hull_z_size, hull_wall_thickness*2 + 2*global_clearance]); // spodní lem
}

Expand Down Expand Up @@ -182,9 +182,9 @@ module 888_1005_rear(){
intersection(){
difference(){
union(){
translate([0,-hull_z_size/2, 0])
translate([0,-hull_z_size/2, top_cover_strip_zposition])
cube([hull_x_size, hull_z_size, hull_wall_thickness*2+2*global_clearance]); // spodní lem
translate([0,-hull_z_size/2, -15])
translate([0,-hull_z_size/2, bottom_cover_strip_zposition])
cube([hull_x_size, hull_z_size, hull_wall_thickness*2+2*global_clearance]); // spodní lem
}

Expand Down

0 comments on commit b2fa021

Please sign in to comment.