From: daniel watson Date: Fri, 8 Apr 2016 02:00:27 +0000 (-0700) Subject: make tube to hold foot of bathroom shelves X-Git-Url: http://challenge-bot.com/repos/?p=ozzloy%40gmail.com%2F3d-printables;a=commitdiff_plain;h=c9cf8f80ad6e400a288e45d19d07a790ca94c8c7 make tube to hold foot of bathroom shelves --- c9cf8f80ad6e400a288e45d19d07a790ca94c8c7 diff --git a/foot-riser-data.scad b/foot-riser-data.scad new file mode 100644 index 0000000..dbc60b2 --- /dev/null +++ b/foot-riser-data.scad @@ -0,0 +1,36 @@ +/* GNU AGPLv3 (or later at your option) + see bottom for more license info */ + +/* riser foot for raising bathroom shelves */ + +fudge = 1; +riser_height = 200; +foot_radius = 42 / 2 + fudge; +wall_thickness = 3; + +module ring_2d(inner_radius, wall_thickness) { + outer_radius = inner_radius + wall_thickness; + difference() { + circle(outer_radius); + circle(inner_radius); } } + +module foot_riser() { + linear_extrude(height = 200) { + ring_2d(foot_radius, wall_thickness); } } + +/* + This file is part of 3d-printables. + + 3d-printables is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + 3d-printables is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/foot-riser.scad b/foot-riser.scad new file mode 100644 index 0000000..d7fa523 --- /dev/null +++ b/foot-riser.scad @@ -0,0 +1,24 @@ +/* GNU AGPLv3 (or later at your option) + see bottom for more license info */ + +/* riser foot for raisingbathroom shelves */ +include + +foot_riser(); + +/* + This file is part of 3d-printables. + + 3d-printables is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + 3d-printables is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/