2019-09-29 12:11:46 +08:00
|
|
|
# joint_T
|
|
|
|
|
|
|
|
Create a joint_T for rotatable models.
|
|
|
|
|
2021-02-24 21:09:54 +08:00
|
|
|
![joint_T](images/lib3x-joint_T-1.JPG)
|
2019-09-29 12:11:46 +08:00
|
|
|
|
|
|
|
**Since:** 2.1
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
- `shaft_r` : The shaft radius of the joint_T.
|
|
|
|
- `shaft_h` : The height of the shaft.
|
|
|
|
- `t_leng` : The length of the T part.
|
|
|
|
- `thickness` : The thicnkess of the ring.
|
|
|
|
- `spacing` : The spacing between the shaft and the ring. Default to `0.5`.
|
|
|
|
- `center` : `false` (default) for z ranges from 0 to `shaft_h`. `true` for z ranges from `-shaft_h / 2` to `shaft_h / 2`.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2020-01-28 17:51:20 +08:00
|
|
|
use <part/joint_T.scad>;
|
2019-09-29 12:11:46 +08:00
|
|
|
|
|
|
|
$fn = 48;
|
|
|
|
|
|
|
|
joint_T(
|
|
|
|
shaft_r = 2,
|
|
|
|
shaft_h = 15,
|
|
|
|
t_leng = 15,
|
|
|
|
thickness = 2,
|
|
|
|
spacing = 0.5
|
|
|
|
);
|
|
|
|
|
2021-02-24 21:09:54 +08:00
|
|
|
![joint_T](images/lib3x-joint_T-2.JPG)
|