added awesome modular multi-hdd-case

This commit is contained in:
2022-09-09 13:22:30 +02:00
parent e721eee91d
commit 3554180422
7 changed files with 723 additions and 0 deletions

View File

@@ -0,0 +1,137 @@
/**
* Módulos para dibujar cajas con bordes redondeados.
*
* @author Joaquín Fernández
* @url https://gitlab.com/joaquinfq/openscad/blob/master/Modules/Box/rounded.scad
* @license CC-BY-NC-4.0
*/
//----------------------------------------------------------
use <../../Functions/is.scad>
//----------------------------------------------------------
/**
* Genera las coordenadas para dibujar un rectángulo con las esquinas redondeadas.
* Cada esquina puede tener un radio diferente.
*
* @param {Float} width Ancho del rectángulo.
* @param {Float} height Alto del rectángulo.
* @param {Float[]} radius Radios a usar para redondear cada esquina.
*/
function boxRoundedRect(width, height, radius = [ 1, 1, 1, 1 ]) = let(
_r = radius[0] == undef
? [ radius, radius, radius, radius ]
: radius
)
[
[
[ 0, height - _r[0] ],
[ _r[0], height - _r[0] ],
[ _r[0], height ],
[ width - _r[1], height ],
[ width - _r[1], height - _r[1] ],
[ width , height - _r[1] ],
[ width , _r[2] ],
[ width - _r[2], _r[2] ],
[ width - _r[2], 0 ],
[ _r[3], 0 ],
[ _r[3], _r[3] ],
[ 0, _r[3] ]
],
[
[ _r[0], height - _r[0] ],
[ width - _r[1], height - _r[1] ],
[ width - _r[2], _r[2] ],
[ _r[3], _r[3] ]
]
];
//----------------------------------------------------------
/**
* Dibuja un bloque con los bordes XY redondeados.
*
* @param {Float} width Ancho del bloque (eje X).
* @param {Float} height Largo del bloque (eje Y).
* @param {Float} length Alto del bloque (eje Z).
* @param {Float|Float[]} radius Radios del borde de cada esquina.
*/
module boxRounded(width, height, length, radius = [ 1, 1, 1, 1 ])
{
if (radius)
{
translate([ - width / 2, - height / 2, - length / 2 ])
{
linear_extrude(length)
{
boxRounded2d(width, height, radius);
}
}
}
else
{
cube([ width, height, length ], center = true);
}
}
//----------------------------------------------------------
/**
* Dibuja un bloque con los bordes XY redondeados.
*
* @param {Float} width Ancho del bloque (eje X).
* @param {Float} height Largo del bloque (eje Y).
* @param {Float|Float[]} radius Radios del borde de cada esquina.
*/
module boxRounded2d(width, height, radius = [ 1, 1, 1, 1 ])
{
// Si se pasa un número, lo convertimos a un array.
_radius = isArray(radius)
? radius
: [ radius, radius, radius, radius ];
_data = boxRoundedRect(width, height, _radius);
polygon(points = _data[0]);
for (_index = [ 0 : 3 ])
{
if (_radius[_index] > 0)
{
translate(_data[1][_index])
{
circle(r = _radius[_index]);
}
}
}
}
//----------------------------------------------------------
/**
* Dibuja un bloque con todos los bordes redondeados.
*
* @param width Ancho del bloque (eje X).
* @param height Largo del bloque (eje Y).
* @param length Alto del bloque (eje Z).
* @param radius Radio del borde.
*/
module boxRounded3d(width, height, length, radius = 1)
{
if (radius > 0)
{
hull()
{
for (z = [ -1, 1 ])
{
for (y = [ -1, 1 ])
{
for (x = [ -1, 1 ])
{
translate([
x * (width / 2 - radius),
y * (height / 2 - radius),
z * (length / 2 - radius)
])
{
sphere(r = radius, center = true);
}
}
}
}
}
}
else
{
cube([ width, height, length ], center = true);
}
}

View File

@@ -0,0 +1,76 @@
/**
* Genera una bandeja para insertar un modelo.
*
* @author Joaquín Fernández
* @url https://gitlab.com/joaquinfq/openscad/blob/master/Modules/Box/tray.scad
* @license CC-BY-NC-4.0
*/
//----------------------------------------------------------
/**
* Permite dibujar una bandeja y decidir cuáles caras eliminar.
*
* Los lados de la bandeja se enumeran de la siguiente manera (con respecto al plano XZ):
*
* - a : Parte trasera.
* - b : Parte inferior.
* - l : Parte izquierda.
* - r : Parte derecha.
* - t : Parte superior.
*
* @param {Float} width Anchura de la bandeja a generar (eje X).
* @param {Float} height Altura de la bandeja a generar (eje Y).
* @param {Float} length Longitud de la bandeja a generar (eje Z).
* @param {Float} thickness Grosor de las paredes de la bandeja.
* @param {Boolean} sides Lados de la bandeja a omitir.
*/
module boxTray(width, height, length, thickness = 5, sides = [])
{
_t = 2 * thickness;
difference()
{
cube([ width + _t, height + _t, length + thickness ]);
translate([ thickness, thickness, 0 ])
{
if ($children)
{
children();
}
else
{
cube([ width, height, length ]);
}
}
for (_s = sides)
{
if (_s == "a")
{
translate([ 0, 0, length ])
{
cube([ width + _t, height + _t, _t ]);
}
}
else if (_s == "b")
{
cube([ width + _t, thickness, length + _t ]);
}
else if (_s == "l")
{
translate([ width + thickness, 0, 0 ])
{
cube([ thickness, height + _t, length + _t ]);
}
}
else if (_s == "r")
{
cube([ thickness, height + _t, length + _t ]);
}
else if (_s == "t")
{
translate([ 0, height + thickness, 0 ])
{
cube([ width + _t, thickness, length + _t ]);
}
}
}
}
}