Syntags for affine.scad, attachments.scad, ball_bearings.scad, beziers.scad, bottlecaps.scad.

This commit is contained in:
Revar Desmera
2023-05-09 18:04:29 -07:00
parent 0c63875f72
commit 131c0ea99d
5 changed files with 51 additions and 5 deletions

View File

@@ -14,6 +14,7 @@
// Module: ball_bearing()
// Synopsis: Creates a standardized ball bearing assembly.
// SynTags: Geom
// Topics: Parts, Bearings
// See Also: linear_bearing(), lmXuu_bearing(), lmXuu_housing()
// Description:
@@ -27,13 +28,13 @@
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#subsection-spin). Default: `0`
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#subsection-orient). Default: `UP`
// Example:
// ball_bearing("608");
// ball_bearing("608", $fn=72);
// Example:
// ball_bearing("608ZZ");
// ball_bearing("608ZZ", $fn=72);
// Example:
// ball_bearing("R8");
// ball_bearing("R8", $fn=72);
// Example:
// ball_bearing(id=12,od=32,width=10,shield=false);
// ball_bearing(id=12,od=32,width=10,shield=false, $fn=72);
module ball_bearing(trade_size, id, od, width, shield=true, anchor=CTR, spin=0, orient=UP) {
info = is_undef(trade_size)? [id, od, width, shield] :
ball_bearing_info(trade_size);
@@ -73,7 +74,7 @@ module ball_bearing(trade_size, id, od, width, shield=true, anchor=CTR, spin=0,
// Function: ball_bearing_info()
// Synopsis: Creates a standardized ball bearing assembly.
// Synopsis: Returns size info for a standardized ball bearing assembly.
// Topics: Parts, Bearings
// See Also: ball_bearing(), linear_bearing(), lmXuu_info()
// Description: