mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-04 03:09:45 +00:00
improve tube() docs
This commit is contained in:
parent
8b622e710c
commit
eaf112a039
1 changed files with 11 additions and 14 deletions
|
@ -1288,7 +1288,7 @@ function cylinder(h, r1, r2, center, l, r, d, d1, d2, anchor, spin=0, orient=UP)
|
||||||
// Example: External Roundings
|
// Example: External Roundings
|
||||||
// cyl(l=50, r=30, rounding1=-5, rounding2=5, $fa=1, $fs=1);
|
// cyl(l=50, r=30, rounding1=-5, rounding2=5, $fa=1, $fs=1);
|
||||||
//
|
//
|
||||||
// Example: Standard Connectors
|
// Example(Med): Standard Connectors
|
||||||
// xdistribute(40) {
|
// xdistribute(40) {
|
||||||
// cyl(l=30, d=25) show_anchors();
|
// cyl(l=30, d=25) show_anchors();
|
||||||
// cyl(l=30, d1=25, d2=10) show_anchors();
|
// cyl(l=30, d1=25, d2=10) show_anchors();
|
||||||
|
@ -1755,19 +1755,16 @@ module zcyl(
|
||||||
// Module: tube()
|
// Module: tube()
|
||||||
//
|
//
|
||||||
// Description:
|
// Description:
|
||||||
// Makes a hollow tube with the given outer size and wall thickness.
|
// Makes a hollow tube that can be cylindrical or conical by specifying inner and outer dimensions or by giving one dimension and
|
||||||
//
|
// wall thickness.
|
||||||
// Usage: Typical
|
// Usage: Basic cylindrical tube, specifying inner and outer radius or diameter
|
||||||
// tube(h|l, or, ir, [center], [realign=]);
|
// tube(h|l, or, ir, [center], [realign=], [anchor=], [spin=],[orient=]) [ATTACHMENTS];
|
||||||
// tube(h|l, or=|od=, ir=|id=, ...);
|
// tube(h|l, od=, id=, ...) [ATTACHMENTS];
|
||||||
// tube(h|l, ir|id, wall, ...);
|
// Usage: Specify wall thickness
|
||||||
// tube(h|l, or|od, wall, ...);
|
// tube(h|l, or|od=|ir=|id=, wall=, ...) [ATTACHMENTS];
|
||||||
// tube(h|l, ir1|id1, ir2|id2, wall, ...);
|
// Usage: Conical tubes
|
||||||
// tube(h|l, or1|od1, or2|od2, wall, ...);
|
// tube(h|l, ir1=|id1=, ir2=|id2=, or1=|od1=, or2=|od2=, ...) [ATTACHMENTS];
|
||||||
// tube(h|l, ir1|id1, ir2|id2, or1|od1, or2|od2, [realign]);
|
// tube(h|l, or1=|od1=, or2=|od2=, wall=, ...) [ATTACHMENTS];
|
||||||
// Usage: Attaching Children
|
|
||||||
// tube(...) ATTACHMENTS;
|
|
||||||
//
|
|
||||||
// Arguments:
|
// Arguments:
|
||||||
// h / l = height of tube. Default: 1
|
// h / l = height of tube. Default: 1
|
||||||
// or = Outer radius of tube. Default: 1
|
// or = Outer radius of tube. Default: 1
|
||||||
|
|
Loading…
Reference in a new issue