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 /smoothieboardPlate.scad
parent69de3f7bf9d97afa90cd0aeca4ba56d45e83a078 (diff)
Made some of the M3 holes a little tighter.
Also corrected some comments.
Diffstat (limited to 'smoothieboardPlate.scad')
-rw-r--r--smoothieboardPlate.scad6
1 files changed, 3 insertions, 3 deletions
diff --git a/smoothieboardPlate.scad b/smoothieboardPlate.scad
index 94a8e81..82ac48a 100644
--- a/smoothieboardPlate.scad
+++ b/smoothieboardPlate.scad
@@ -22,7 +22,7 @@ pillarHeight = 7 - zPcBoard;
edgeWidth = 15;
outsideEdge = 5;
-// AZSMZ holes.
+// Smoothieboard holes.
upperLeft = [ 2.5, ySize-3];
upperRight = [xSize-28, ySize-3];
lowerLeft = [ 9, 8.5];
@@ -70,7 +70,7 @@ module smoothieboardPlate()
translate([xSize/2, ySize/2, zSize/2])
translate([0, 5, 0])
roundedBox([xSize-edgeWidth,
- ySize-edgeWidth - 5,
+ ySize-edgeWidth - 8,
zSize+smidge],
5, true);
@@ -93,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);
}