Completed design for v2.
This commit is contained in:
20
models/glovebox_door/glove_gasket.scad
Normal file
20
models/glovebox_door/glove_gasket.scad
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
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();
|
||||
Reference in New Issue
Block a user