Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/haydnhuntley/kumu-3d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaydn Huntley <haydn.huntley@gmail.com>2017-04-01 23:48:18 +0300
committerGitHub <noreply@github.com>2017-04-01 23:48:18 +0300
commitb47477e2e36f9cdd0886778e8b4cb90b156989f5 (patch)
tree471f57ca7c172feaea2c085f50e3178bf3a4c0be /mksSbasePlate.scad
parent69de3f7bf9d97afa90cd0aeca4ba56d45e83a078 (diff)
Made some of the M3 holes a little tighter.
Also corrected some comments.
Diffstat (limited to 'mksSbasePlate.scad')
-rw-r--r--mksSbasePlate.scad5
1 files changed, 2 insertions, 3 deletions
diff --git a/mksSbasePlate.scad b/mksSbasePlate.scad
index 8e6205a..3f872ee 100644
--- a/mksSbasePlate.scad
+++ b/mksSbasePlate.scad
@@ -7,7 +7,6 @@
// Louis Dionne
// louis.dionne@gmail.com
-
$fn=360/6;
include <configuration.scad>;
@@ -23,7 +22,7 @@ pillarHeight = 7 - zPcBoard;
edgeWidth = 15;
outsideEdge = 5;
-// AZSMZ holes.
+// MKS SBASE holes.
upperLeft = [ 4, ySize-4];
upperRight = [xSize-4, ySize-4];
lowerLeft = [ 4, 4];
@@ -94,7 +93,7 @@ module m3x6(pos)
{
// These holes need to be slightly tight.
translate([pos[0], pos[1], -smidge/2])
- cylinder(r1=m3Radius, r2=m3LooseRadius, h=pillarHeight+smidge);
+ cylinder(r1=m3Radius-smidge, r2=m3Radius, h=pillarHeight+smidge);
}