mirror of
https://github.com/DJSundog/NopSCADlib.git
synced 2024-11-23 07:13:51 -05:00
Updated readme and images.
This commit is contained in:
parent
5bb95b2406
commit
6b2f8d282b
@ -5970,6 +5970,7 @@ Simple tube or ring
|
|||||||
### Modules
|
### Modules
|
||||||
| Module | Description |
|
| Module | Description |
|
||||||
|:--- |:--- |
|
|:--- |:--- |
|
||||||
|
| `rectangular_tube(size, center = true, thickness = 1, fillet = 0.5)` | Create a retangular tube with filleted corners |
|
||||||
| `ring(or, ir)` | Create a ring with specified external and internal radii |
|
| `ring(or, ir)` | Create a ring with specified external and internal radii |
|
||||||
| `tube(or, ir, h, center = true)` | Create a tube with specified external and internal radii and height `h` |
|
| `tube(or, ir, h, center = true)` | Create a tube with specified external and internal radii and height `h` |
|
||||||
| `woven_tube(or, ir, h, center= true, colour = grey(30)` | Create a woven tube with specified external and internal radii, height `h`, colours, warp and weft |
|
| `woven_tube(or, ir, h, center= true, colour = grey(30)` | Create a woven tube with specified external and internal radii, height `h`, colours, warp and weft |
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 43 KiB |
@ -69,7 +69,7 @@ module woven_tube(or, ir, h, center= true, colour = grey(30), colour2, warp = 2,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module rectangular_tube(size, center = true, thickness = 1, fillet = 0.5) {
|
module rectangular_tube(size, center = true, thickness = 1, fillet = 0.5) { //! Create a retangular tube with filleted corners
|
||||||
extrude_if(size.z, center = center)
|
extrude_if(size.z, center = center)
|
||||||
difference() {
|
difference() {
|
||||||
rounded_square([size.x, size.y], fillet);
|
rounded_square([size.x, size.y], fillet);
|
||||||
|
Loading…
Reference in New Issue
Block a user