mirror of
https://github.com/adrianschlatter/threadlib.git
synced 2025-01-30 11:58:57 +01:00
23 lines
448 B
OpenSCAD
23 lines
448 B
OpenSCAD
|
/*
|
||
|
Create nice previews for documentation
|
||
|
|
||
|
:Author: Adrian Schlatter
|
||
|
:Date: 2019-04-13
|
||
|
:License: 3-Clause BSD. See LICENSE.
|
||
|
*/
|
||
|
|
||
|
use <threadlib/threadlib.scad>
|
||
|
|
||
|
type = "G1/2-ext";
|
||
|
turns = 5;
|
||
|
higbee_arc = 20;
|
||
|
|
||
|
thread(type, turns, higbee_arc=higbee_arc);
|
||
|
|
||
|
specs = thread_specs(type);
|
||
|
P = specs[0]; Rrot = specs[1]; Dsupport = specs[2];
|
||
|
section_profile = specs[3];
|
||
|
H = (turns + 1) * P;
|
||
|
translate([0, 0, -P / 2])
|
||
|
cylinder(h=H, d=Dsupport, $fn=120);
|