mirror of
https://github.com/nyanotech/openscad_models.git
synced 2025-12-16 11:30:25 -08:00
Add chair piston guard
This commit is contained in:
parent
9e8adff8d4
commit
4981a1b462
19
models/chair_piston_guard.scad
Normal file
19
models/chair_piston_guard.scad
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
// A cover for computer chair pistons, so you don't accidentally kick the greasy
|
||||||
|
// piston. Nothing special, just a cylinder with 2 cylinders cut out of it.
|
||||||
|
|
||||||
|
// These default values are for an ikea ALRIK and my (badly tuned) pronter.
|
||||||
|
|
||||||
|
piston_dia = 28.2;
|
||||||
|
outer_dia = 53;
|
||||||
|
contact_length = 5;
|
||||||
|
covered_length = 147;
|
||||||
|
|
||||||
|
thickness = 1.5;
|
||||||
|
|
||||||
|
difference() {
|
||||||
|
cylinder($fn=120, h=(contact_length + covered_length), d =(outer_dia + 2*thickness));
|
||||||
|
cylinder($fn=120, h=contact_length, d=piston_dia);
|
||||||
|
translate([0, 0, contact_length]) {
|
||||||
|
cylinder($fn=120, h=covered_length, d=outer_dia);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user