20 lines
616 B
OpenSCAD
20 lines
616 B
OpenSCAD
|
|
include <../../config.scad>;
|
|
use <./glove_gasket_holes.scad>;
|
|
|
|
module glove_gasket() {
|
|
color("black") difference() {
|
|
// Body
|
|
cylinder(T_GASKET_RUBBER, D_GLOVE_HOLE / 2 + W_DOOR_GASKET, D_GLOVE_HOLE / 2 + W_DOOR_GASKET, center = true);
|
|
// Arm hole
|
|
cylinder(T_GASKET_RUBBER, D_GLOVE_HOLE / 2, D_GLOVE_HOLE / 2, center = true);
|
|
// Fastener holes
|
|
glove_gasket_holes();
|
|
}
|
|
// Shopping
|
|
echo(str("EDPM rubber: Vent Gasket ", D_GLOVE_HOLE + W_DOOR_GASKET * 2, "mm x ", D_GLOVE_HOLE + W_DOOR_GASKET * 2, "mm - x1"));
|
|
}
|
|
|
|
$fn = 250;
|
|
// test output
|
|
glove_gasket(); |