From 10a98aa731659b82ea0e3c6be7af43fb9128b535 Mon Sep 17 00:00:00 2001 From: lukas Date: Mon, 4 Jan 2021 21:09:43 +0100 Subject: [PATCH] add printbed module --- 3dprinter.scad | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/3dprinter.scad b/3dprinter.scad index 18a47cb..c0b207f 100644 --- a/3dprinter.scad +++ b/3dprinter.scad @@ -9,6 +9,8 @@ bottomAngleBrackets(); horizontalProfile(); YAxis(); +printBed(); + module bottmoutline() { // draw alu profiles @@ -51,6 +53,13 @@ module YAxis() { translate([214, 400, 0]) rotate([0, 0, 180]) YRollHolder(); } +module printBed(){ + translate([50,50,50]) halfAluProfile(300); + translate([50,300,50]) halfAluProfile(300); + translate([90,90,50]) rotate([0,0,90]) halfAluProfile(220); + translate([350,90,50]) rotate([0,0,90]) halfAluProfile(220); +} + // -- MODULES -- // module aluProfile(length) {