mirror of
https://github.com/revarbat/snappy-reprap.git
synced 2025-11-02 23:56:45 -08:00
Remove uneccessary cross braces.
This commit is contained in:
2
Makefile
2
Makefile
@@ -21,7 +21,7 @@ clean:
|
||||
rm -f ${TARGETS} *.deps
|
||||
|
||||
rendering:
|
||||
${OPENSCAD} -o wiki/snappy_full.png --imgsize=3200,3200 --projection=p --csglimit=100000 --camera=-120,-120,100,60,0,45,3333 full_assembly.scad
|
||||
${OPENSCAD} -o wiki/snappy_full.png --imgsize=3200,3200 --projection=p --csglimit=100000 --camera=45,-225,165,65,0,300,3500 full_assembly.scad
|
||||
cp wiki/snappy_full.png wiki/snappy_small.png
|
||||
sips -Z 800 wiki/snappy_full.png
|
||||
sips -Z 200 wiki/snappy_small.png
|
||||
|
||||
@@ -18,7 +18,7 @@ module rail_with_motor_mount()
|
||||
|
||||
// Walls.
|
||||
grid_of(xa=[-(rail_spacing/2+joiner_width/2), (rail_spacing/2+joiner_width/2)], za=[(rail_height+3)/2]) {
|
||||
thinning_wall(h=rail_height+3, l=motor_rail_length-joiner_length, thick=joiner_width, strut=rail_thick);
|
||||
thinning_wall(h=rail_height+3, l=motor_rail_length-joiner_length, thick=joiner_width, strut=rail_thick, bracing=false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ module rails_end()
|
||||
|
||||
// Back.
|
||||
translate([0, -joiner_length-rail_thick/2+0.05, base_height/2]) zrot(90)
|
||||
thinning_wall(h=base_height, l=rail_width, thick=rail_thick, strut=joiner_width);
|
||||
thinning_wall(h=base_height, l=rail_width, thick=rail_thick, strut=joiner_width, bracing=false);
|
||||
}
|
||||
|
||||
// Clear space out near front clips.
|
||||
|
||||
@@ -5,7 +5,7 @@ use <joiners.scad>
|
||||
|
||||
module rail_structure()
|
||||
{
|
||||
color("Lavender") difference() {
|
||||
color([0.9, 0.7, 1.0]) difference() {
|
||||
union() {
|
||||
difference() {
|
||||
union() {
|
||||
@@ -15,7 +15,7 @@ module rail_structure()
|
||||
|
||||
// Walls.
|
||||
grid_of(xa=[-(rail_spacing/2+joiner_width/2), (rail_spacing/2+joiner_width/2)], za=[(rail_height+3)/2]) {
|
||||
thinning_wall(h=rail_height+3, l=rail_length-10*2, thick=joiner_width, strut=rail_thick);
|
||||
thinning_wall(h=rail_height+3, l=rail_length-10*2, thick=joiner_width, strut=rail_thick, bracing=false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,11 +50,11 @@ module rail_structure()
|
||||
translate([0, rail_length/2-8, rail_height/4]) {
|
||||
difference() {
|
||||
// Side supports.
|
||||
cube(size=[rail_width, 4, rail_height/2], center=true);
|
||||
cube(size=[rail_width, 3, rail_height/2], center=true);
|
||||
|
||||
// Wiring access holes.
|
||||
grid_of(xa=[-rail_width/4, rail_width/4])
|
||||
teardrop(r=5, h=5, center=true);
|
||||
cube(size=[8, 5, 10], center=true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
2
wiki
2
wiki
Submodule wiki updated: 941c2a9bbf...b876ad40fb
Reference in New Issue
Block a user