19 lines
651 B
OpenSCAD
19 lines
651 B
OpenSCAD
use <../tray.scad>
|
|
|
|
// Config variables
|
|
trayWidth = 140;
|
|
trayDepth = 85;
|
|
trayThickness = 3;
|
|
|
|
pointHoleRadius = screwRadiusSlacked("m3");
|
|
pointHoleThickness = 2;
|
|
pointMountElevation = 1;
|
|
mountPoints = [ // [x,y,elevation,holeRadius,holeThickness]
|
|
[(27.5),34, pointMountElevation, pointHoleRadius, pointHoleThickness],
|
|
[(27.5)+79.5,34, pointMountElevation, pointHoleRadius, pointHoleThickness]
|
|
];
|
|
|
|
mountScrewType = "m3";
|
|
|
|
// Rack mount tray that supports screws on the bottom of the rack-mount item
|
|
bottomScrewTray(u=1, trayWidth=trayWidth, trayDepth=trayDepth, trayThickness=trayThickness, mountPoints=mountPoints, mountScrewType=mountScrewType); |