Skip to content

phillips_drive.scad

Revar Desmera edited this page Mar 31, 2019 · 8 revisions

Library File phillips_drive.scad

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

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

Table of Contents

  1. Modules

1. Modules

phillips_drive()

Description: Creates a model of a phillips driver bit of a given named size.

Argument What it does
size The size of the bit. "#1", "#2", or "#3"
shaft The diameter of the drive bit's shaft.
l The length of the drive bit.

Example:

xdistribute(10) {
   phillips_drive(size="#1", shaft=4, l=20);
   phillips_drive(size="#2", shaft=6, l=20);
   phillips_drive(size="#3", shaft=6, l=20);
}

phillips_drive() Example