mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-28 23:39:36 +00:00
screw_drive.scad docs fixes.
This commit is contained in:
parent
3b88363306
commit
d2ced17756
1 changed files with 11 additions and 11 deletions
|
@ -16,7 +16,7 @@ include <structs.scad>
|
|||
// Module: phillips_mask()
|
||||
// Synopsis: Creates a mask for a Philips screw drive.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: hex_drive_mask(), philips_depth(), phillips_diam(), torx_mask(), robertson_mask()
|
||||
// See Also: hex_drive_mask(), phillips_depth(), phillips_diam(), torx_mask(), robertson_mask()
|
||||
// Usage:
|
||||
// phillips_mask(size) [ATTACHMENTS];
|
||||
// Description:
|
||||
|
@ -88,7 +88,7 @@ module phillips_mask(size="#2", $fn=36, anchor=BOTTOM, spin=0, orient=UP) {
|
|||
// Function: phillips_depth()
|
||||
// Synopsis: Returns the depth a phillips recess needs to be for a given diameter.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), philips_depth(), phillips_diam(), torx_mask()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), phillips_depth(), phillips_diam(), torx_mask()
|
||||
// Usage:
|
||||
// depth = phillips_depth(size, d);
|
||||
// Description:
|
||||
|
@ -113,7 +113,7 @@ function phillips_depth(size, d) =
|
|||
// Function: phillips_diam()
|
||||
// Synopsis: Returns the diameter of a phillips recess of a given depth.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), philips_depth(), phillips_diam(), torx_mask()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), phillips_depth(), phillips_diam(), torx_mask()
|
||||
// Usage:
|
||||
// diam = phillips_diam(size, depth);
|
||||
// Description:
|
||||
|
@ -137,10 +137,10 @@ function phillips_diam(size, depth) =
|
|||
|
||||
// Section: Hex drive
|
||||
|
||||
// Module hex_drive_mask()
|
||||
// Module: hex_drive_mask()
|
||||
// Synopsis: Creates a mask for a hex drive recess.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), philips_depth(), phillips_diam(), robertson_mask()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), phillips_depth(), phillips_diam(), robertson_mask()
|
||||
// Usage:
|
||||
// hex_drive_mask(size, length, [anchor], [spin], [orient], [$slop]) [ATTACHMENTS];
|
||||
// Description:
|
||||
|
@ -162,7 +162,7 @@ function hex_drive_mask(size,length,l,h,height,anchor,spin,orient) = no_function
|
|||
// Module: torx_mask()
|
||||
// Synopsis: Creates a mask for a torx drive recess.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), philips_depth(), phillips_diam(), robertson_mask()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), phillips_depth(), phillips_diam(), robertson_mask()
|
||||
// Usage:
|
||||
// torx_mask(size, l, [center]) [ATTACHMENTS];
|
||||
// Description: Creates a torx bit tip.
|
||||
|
@ -192,7 +192,7 @@ module torx_mask(size, l=5, center, anchor, spin=0, orient=UP) {
|
|||
// Module: torx_mask2d()
|
||||
// Synopsis: Creates the 2D cross section for a torx drive recess.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), philips_depth(), phillips_diam(), torx_info(), robertson_mask()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), phillips_depth(), phillips_diam(), torx_info(), robertson_mask()
|
||||
// Usage:
|
||||
// torx_mask2d(size);
|
||||
// Description: Creates a torx bit 2D profile.
|
||||
|
@ -236,7 +236,7 @@ module torx_mask2d(size) {
|
|||
// Function: torx_info()
|
||||
// Synopsis: Returns the dimensions of a torx drive.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), philips_depth(), phillips_diam(), torx_info()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), phillips_depth(), phillips_diam(), torx_info()
|
||||
// Usage:
|
||||
// info = torx_info(size);
|
||||
// Description:
|
||||
|
@ -287,7 +287,7 @@ function torx_info(size) =
|
|||
// Function: torx_diam()
|
||||
// Synopsis: Returns the diameter of a torx drive.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), philips_depth(), phillips_diam(), torx_info()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), phillips_depth(), phillips_diam(), torx_info()
|
||||
// Usage:
|
||||
// diam = torx_diam(size);
|
||||
// Description: Get the typical outer diameter of Torx profile.
|
||||
|
@ -299,7 +299,7 @@ function torx_diam(size) = torx_info(size)[0];
|
|||
// Function: torx_depth()
|
||||
// Synopsis: Returns the typical depth of a torx drive recess.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), philips_depth(), phillips_diam(), torx_info()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), phillips_depth(), phillips_diam(), torx_info()
|
||||
// Usage:
|
||||
// depth = torx_depth(size);
|
||||
// Description: Gets typical drive hole depth.
|
||||
|
@ -314,7 +314,7 @@ function torx_depth(size) = torx_info(size)[2];
|
|||
// Module: robertson_mask()
|
||||
// Synopsis: Creates a mask for a Robertson/Square drive recess.
|
||||
// Topics: Screws, Masks
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), philips_depth(), phillips_diam(), torx_info(), robertson_mask()
|
||||
// See Also: phillips_mask(), hex_drive_mask(), torx_mask(), phillips_depth(), phillips_diam(), torx_info(), robertson_mask()
|
||||
// Usage:
|
||||
// robertson_mask(size, [extra], [ang], [$slop=]);
|
||||
// Description:
|
||||
|
|
Loading…
Reference in a new issue