further work on rack-mount refactor
This commit is contained in:
@ -1,18 +1,26 @@
|
||||
use <./patchPanel.scad>
|
||||
|
||||
/*
|
||||
Parametric patch panel -
|
||||
Parametric patch panel for rj45 keystones
|
||||
|
||||
Please also make sure that the correct rack frame preset is set in rackFrame.scad.
|
||||
|
||||
TODO add support for 2d arrays
|
||||
*/
|
||||
|
||||
module patchPanelSystem (
|
||||
|
||||
// begin config ////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
numSlots = 8;
|
||||
numSlots = 8,
|
||||
plateThickness = 3,
|
||||
keystoneSpacing = 19
|
||||
|
||||
// end config //////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
mirror(v=[0,0,1])
|
||||
patchPanel(slots=numSlots);
|
||||
) {
|
||||
mirror(v = [0, 0, 1])
|
||||
patchPanel(slots = numSlots);
|
||||
}
|
||||
|
||||
patchPanelSystem();
|
||||
Reference in New Issue
Block a user