The file 'Customisable Paint Brush, Pen, Pencil, Tool Holder Stand 3D Printer Model' is (stl,scad) file type, size is 12.8KB.
Inspired from a number of other projects such as:
https://www.thingiverse.com/thing:2977887
https://www.thingiverse.com/thing:1294085
These are both great projects, but neither had the required number of slots or the height wasn't quite right. Not really knowing what I wanted I created a customisable version in OpenSCAD to experiment.
The parameters allow for most parts the paint brush stand to be modified to accommodate various brushes and tools. I've added the final version I went with as an STL, but feel free to experiment with the OpenSCAD file within the project. Please report on anything produced and issues found!
A brief overview of the parameters used:
[[x, y, xsize, ysize]]
. Multiple holes can be within the same vector as [[x, y, xsize, ysize], [x, y, xsize, ysize]
[[0,0],[5,5],[0,5],[5,0]]
To replicate the 6x6 model the following parameters can be used: {
cols = 6;
rows = 6;
holes=[[1,4,2,2],[3,4,2,2]];
stands=[[0,0],[5,5],[0,5],[5,0]];
thickness = 1.5;
hole_size = 10.0;
frame_height = 15.0;
guide_type = 0;
stand_height = 70.0;
stand_tolerance = 0.3;
}
to replicate the 7x7 model with a single stand (albeit without the nice curved edges) the following parameters can be used: {
cols = 7;
rows = 7;
holes=[[-1,-1,-1,-1]];
stands=[[0,6]];
thickness = 1.5;
hole_size = 9.5;
frame_height = 12.0;
guide_type = 0;
stand_height = 70.0;
stand_tolerance = 0.3;
}
custom_stand.stl | 70.6KB | |
stand.scad | 10.5KB |