mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-19 04:51:26 +02:00
add doc
This commit is contained in:
BIN
docs/images/lib2-connector_peg-1.JPG
Normal file
BIN
docs/images/lib2-connector_peg-1.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
BIN
docs/images/lib2-connector_peg-2.JPG
Normal file
BIN
docs/images/lib2-connector_peg-2.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
57
docs/lib2-connector_peg.md
Normal file
57
docs/lib2-connector_peg.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# connector_peg
|
||||
|
||||
Create a connector peg.
|
||||
|
||||
**Since:** 2.1
|
||||
|
||||
|
||||
## Parameters
|
||||
|
||||
- `radius` : The shaft radius of the peg.
|
||||
- `spacing` : The spacing between the peg and void component. Default to `0.5`.
|
||||
- `void` : The void component for differencing. It's used to create a cavity for a peg. Default to `false`.
|
||||
- `ends` : Default to `false`. To create a double-ended peg, set it to `true`.
|
||||
|
||||
## Examples
|
||||
|
||||
include <part/connector_peg.scad>;
|
||||
|
||||
radius = 2.5;
|
||||
spacing = 0.5;
|
||||
|
||||
$fn = 48;
|
||||
|
||||
connector_peg(
|
||||
radius = radius,
|
||||
spacing = spacing
|
||||
);
|
||||
|
||||
%connector_peg(
|
||||
radius = radius,
|
||||
spacing = spacing,
|
||||
void = true
|
||||
);
|
||||
|
||||

|
||||
|
||||
include <part/connector_peg.scad>;
|
||||
|
||||
radius = 2.5;
|
||||
spacing = 0.5;
|
||||
|
||||
$fn = 48;
|
||||
|
||||
connector_peg(
|
||||
radius = radius,
|
||||
spacing = spacing,
|
||||
ends = true
|
||||
);
|
||||
|
||||
%connector_peg(
|
||||
radius = radius,
|
||||
spacing = spacing,
|
||||
ends = true,
|
||||
void = true
|
||||
);
|
||||
|
||||

|
Reference in New Issue
Block a user