mirror of
https://github.com/adrianschlatter/threadlib.git
synced 2025-08-06 16:16:40 +02:00
- bumped up version number
- updated change log in README - clearly stated units threadlib is using
This commit is contained in:
12
README.rst
12
README.rst
@@ -39,8 +39,9 @@ Why you may want to use threadlib
|
|||||||
- choose the $fn you need to fit the rest of your design
|
- choose the $fn you need to fit the rest of your design
|
||||||
- let threadlib tell you the thread specs so you can do with them what *you* want
|
- let threadlib tell you the thread specs so you can do with them what *you* want
|
||||||
- extensible: Add your own threads
|
- extensible: Add your own threads
|
||||||
- tried and tested in the real world: Um no, not yet. But with your help, it
|
- tried and tested in the real world: Well, partly. Given the sheer number of
|
||||||
will soon be.
|
threads, this is only possible with *your* help! Any feedback regarding working
|
||||||
|
(or not working) threadlib-threads is appreciated.
|
||||||
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
@@ -62,6 +63,10 @@ Clone threadlib into the folder 'threadlib' inside your OpenSCAD library folder
|
|||||||
Usage
|
Usage
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
Before you start: threadlib is designed in millimeters (not meters, not inches).
|
||||||
|
Make sure that your units are set accordingly or scale the output of threadlib
|
||||||
|
to match the units you use in your project!
|
||||||
|
|
||||||
To create a bolt (without head) with 5 turns of M4 thread:
|
To create a bolt (without head) with 5 turns of M4 thread:
|
||||||
|
|
||||||
.. code-block:: OpenSCAD
|
.. code-block:: OpenSCAD
|
||||||
@@ -147,6 +152,9 @@ for addition to threadlib!
|
|||||||
Change Log
|
Change Log
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
- 0.3: Unified Inch Screw Threads (UNC, UNF, UNEF, 4-UN, 6-UN, 8-UN, 12-UN,
|
||||||
|
16-UN, 20-UN, 28-UN, and 32-UN. Fixed problem with PCO-1881-int. Fixed problem
|
||||||
|
with G-ext threads . New build system.
|
||||||
- 0.2: `Metric threads <http://mdmetric.com/tech/M-thead%20600.htm>`__, `PCO-1881 <https://www.bevtech.org/assets/Committees/Packaging-Technology/20/3784253-20.pdf>`__
|
- 0.2: `Metric threads <http://mdmetric.com/tech/M-thead%20600.htm>`__, `PCO-1881 <https://www.bevtech.org/assets/Committees/Packaging-Technology/20/3784253-20.pdf>`__
|
||||||
- 0.1: Initial release supporting `BSP parallel thread <https://www.amesweb.info/Screws/British-Standard-Pipe-Parallel-Thread-BSPP.aspx>`__
|
- 0.1: Initial release supporting `BSP parallel thread <https://www.amesweb.info/Screws/British-Standard-Pipe-Parallel-Thread-BSPP.aspx>`__
|
||||||
|
|
||||||
|
@@ -5,11 +5,11 @@ threadlib
|
|||||||
Create threads easily.
|
Create threads easily.
|
||||||
|
|
||||||
:Author: Adrian Schlatter
|
:Author: Adrian Schlatter
|
||||||
:Date: 2019-04-07
|
:Date: 2019-11-11
|
||||||
:License: 3-Clause BSD. See LICENSE.
|
:License: 3-Clause BSD. See LICENSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function __THREADLIB_VERSION() = 0.2;
|
function __THREADLIB_VERSION() = 0.3;
|
||||||
|
|
||||||
use <thread_profile.scad>
|
use <thread_profile.scad>
|
||||||
include <THREAD_TABLE.scad>
|
include <THREAD_TABLE.scad>
|
||||||
|
Reference in New Issue
Block a user