October 10, 2021
Description
Pretty straightforward, additional labels for these awesome lack enclosure drawers. Includes a blank label in OpenSCAD format, plus two labels with icons from https://materialdesignicons.com
It should be very easy to extend this .scad file with additional icons. Just pick out icons from https://materialdesignicons.com and export them to SVG format. Then, add it to the translate block at line 31 like so:
if (label == “youricon”) {
linear_extrude(1) {
scale([1.25,1.25,1])
translate([-4.23,-4.23])
import("youricon.svg");
}
}License:
GNU General Public License v3.0
10