Skip to content
Revar Desmera edited this page Mar 31, 2019 · 5 revisions

Library File torx_drive.scad

Torx driver bits To use, add these lines to the top of your file:

include <BOSL/constants.scad>
use <BOSL/torx_drive.scad>

Table of Contents

  1. Functions

  2. Modules


1. Functions

torx_outer_diam()

Description: Get the typical outer diameter of Torx profile.

Argument What it does
size Torx size.

torx_inner_diam()

Description: Get typical inner diameter of Torx profile.

Argument What it does
size Torx size.

torx_depth()

Description: Gets typical drive hole depth.

Argument What it does
size Torx size.

torx_tip_radius()

Description: Gets minor rounding radius of Torx profile.

Argument What it does
size Torx size.

torx_rounding_radius()

Description: Gets major rounding radius of Torx profile.

Argument What it does
size Torx size.

2. Modules

torx_drive2d()

Description: Creates a torx bit 2D profile.

Argument What it does
size Torx size.

Example:

torx_drive2d(size=30, $fa=1, $fs=1);

torx_drive2d() Example


torx_drive()

Description: Creates a torx bit tip.

Argument What it does
size Torx size.
l Length of bit.
center If true, centers bit vertically.

Example:

torx_drive(size=30, l=10, $fa=1, $fs=1);

torx_drive() Example