/projects/laboratory_trolley/
code_projectopenscad
use ;

// 2x width base bar
translate([-700,0,0])
color("black")
	text("2x base bar (300mm)", size=25);
base_bar(300);

// 2x length base bar
translate([-700,200,0])
color("black")
	text("2x base bar (500mm)", size=25);
translate([0,200,0])
	base_bar(500);

// 4x 600mm vertical bar
translate([-700,800,0])
color("black")
	text("4x vertical bar (600mm)", size=25);
translate([-300,800,0])
rotate([0,-90,180])
	vertical_bar(600);

// 2x width-44 tob bar
translate([-700,400,0])
color("black")
	text("2x top bar (356mm)", size=25);
translate([0,400,0])
rotate([180,0,0])
	top_bar(300-44);

// 2x length-44 top bar
translate([-700,600,0])
color("black")
	text("2x top bar (456mm)", size=25);
translate([0,600,0])
rotate([180,0,0])
	top_bar(500-44);