-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattachment_screw.scad
More file actions
43 lines (37 loc) · 1.05 KB
/
Copy pathattachment_screw.scad
File metadata and controls
43 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// File: attachment_screw.scad
// A screw mount for the Best Fence mount, used to attach the mount to the saw stand
// Includes:
// use <tools/attachment_screw.scad>;
use <../hardware/screw.scad>;
include <../config.scad>;
// Module: attachment_screw
// Description: A simple screw mount for the Best Fence, used to attach the mount to the
// saw stand. This module creates a 2x2 group of screws using variables in config.scad
// This should be the first child of the [mount](parts/mount.scad) module with `mounting_face` set to "TOP"
// Usage:
// attachment_screw();
// Example(3D):
// attachment_screw();
module attachment_screw() {
translate([
-SCREW_MOUNT_WIDTH/2, -SCREW_MOUNT_LENGTH/2, 0
]) {
screw();
}
translate([
SCREW_MOUNT_WIDTH/2, -SCREW_MOUNT_LENGTH/2, 0
]) {
screw();
}
translate([
-SCREW_MOUNT_WIDTH/2, SCREW_MOUNT_LENGTH/2, 0
]) {
screw();
}
translate([
SCREW_MOUNT_WIDTH/2, SCREW_MOUNT_LENGTH/2, 0
]) {
screw();
}
}
attachment_screw();