Skip to content

Commit 7270e91

Browse files
committed
fix screw slack value
1 parent 52e88ed commit 7270e91

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

helper/screws.scad

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include <./math.scad>
55

66
/********************************************************************************/
77
// M3 dimensions
8-
m3HoleRadiusSlack = xySlack;
8+
m3HoleRadiusSlack = radiusXYSlack;
99
m3Diameter = 3.0;
1010
m3Radius = m3Diameter / 2.0;
1111
m3RadiusSlacked = m3Radius + m3HoleRadiusSlack;
@@ -19,7 +19,7 @@ m3HexNutThickness = 2.2;
1919

2020
/********************************************************************************/
2121
// M4 dimensions
22-
m4HoleRadiusSlack = xySlack;
22+
m4HoleRadiusSlack = radiusXYSlack;
2323
m4Diameter = 4.0;
2424
m4Radius = m4Diameter / 2.0;
2525
m4RadiusSlacked = m4Radius + m4HoleRadiusSlack;

rbuild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def run_build(args):
115115
target_var = args.t
116116
dz = args.dz
117117
nightly = args.nightly
118-
build_gifs = args.build_assembly_gifs
118+
build_gifs = args.build_gifs
119119

120120
if (build_var is not None) == (build_gifs is True):
121121
print("Please either provide the build (-b) variable, or the build-gifs option (--build-gifs)")

0 commit comments

Comments
 (0)