forked from nophead/Mendel90
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added rounded corners to some parts to make them easier to print.
Filled some gaps in the X ends to make them faster to print. D motor bracket lid now one piece again, as PCB now clears it. Calibration object now includes horizontal nut traps. Add c14n_stl.py to canonicalise the STL files. Corrected PLA sample diameter. Removed feed tube connector, works fine without it. Removed tube jig as not required in the kit. Manual updated with new part renders.
- Loading branch information
Showing
495 changed files
with
3,272,218 additions
and
3,208,248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
#!/usr/bin/env python | ||
# | ||
# OpenSCAD produces randomly ordered STL files so source control like GIT can't tell if they have changed or not. | ||
# This scrip orders each triangle to start with the lowest vertex first (comparing x, then y, then z) | ||
# It then sorts the triangles to start with the one with the lowest vertices first (comparing first vertex, second, then third) | ||
# This has no effect on the model but makes the STL consistent. I.e. it makes a canonical form. | ||
# | ||
import sys | ||
|
||
class Vertex: | ||
def __init__(self, x, y, z): | ||
self.x, self.y, self.z = x, y, z | ||
self.key = (float(x), float(y), float(z)) | ||
|
||
class Normal: | ||
def __init__(self, dx, dy, dz): | ||
self.dx, self.dy, self.dz = dx, dy, dz | ||
|
||
class Facet: | ||
def __init__(self, normal, v1, v2, v3): | ||
self.normal = normal | ||
if v1.key < v2.key: | ||
if v1.key < v3.key: | ||
self.vertices = (v1, v2, v3) #v1 is the smallest | ||
else: | ||
self.vertices = (v3, v1, v2) #v3 is the smallest | ||
else: | ||
if v2.key < v3.key: | ||
self.vertices = (v2, v3, v1) #v2 is the smallest | ||
else: | ||
self.vertices = (v3, v1, v2) #v3 is the smallest | ||
|
||
def key(self): | ||
return (self.vertices[0].x, self.vertices[0].y, self.vertices[0].z, | ||
self.vertices[1].x, self.vertices[1].y, self.vertices[1].z, | ||
self.vertices[2].x, self.vertices[2].y, self.vertices[2].z) | ||
|
||
class STL: | ||
def __init__(self, fname): | ||
self.facets = [] | ||
|
||
f = open(fname) | ||
words = [s.strip() for s in f.read().split()] | ||
f.close() | ||
|
||
if words[0] == 'solid' and words[1] == 'OpenSCAD_Model': | ||
i = 2 | ||
while words[i] == 'facet': | ||
norm = Normal(words[i + 2], words[i + 3], words[i + 4]) | ||
v1 = Vertex(words[i + 8], words[i + 9], words[i + 10]) | ||
v2 = Vertex(words[i + 12], words[i + 13], words[i + 14]) | ||
v3 = Vertex(words[i + 16], words[i + 17], words[i + 18]) | ||
i += 21 | ||
self.facets.append(Facet(norm, v1, v2, v3)) | ||
|
||
self.facets.sort(key = Facet.key) | ||
else: | ||
print "Not an OpenSCAD ascii STL file" | ||
sys.exit(1) | ||
|
||
def write(self, fname): | ||
f = open(fname,"wt") | ||
print >> f,'solid OpenSCAD_Model' | ||
for facet in self.facets: | ||
print >> f, ' facet normal %s %s %s' % (facet.normal.dx, facet.normal.dy, facet.normal.dz) | ||
print >> f, ' outer loop' | ||
for vertex in facet.vertices: | ||
print >> f, ' vertex %s %s %s' % (vertex.x, vertex.y, vertex.z) | ||
print >> f, ' endloop' | ||
print >> f, ' endfacet' | ||
print >> f, 'endsolid OpenSCAD_Model' | ||
f.close() | ||
|
||
def canonicalise(fname): | ||
stl = STL(fname) | ||
stl.write(fname) | ||
|
||
if __name__ == '__main__': | ||
if len(sys.argv) == 2: | ||
canonicalise(sys.argv[1]) | ||
else: | ||
print "usage: c14n_stl file" | ||
sys.exit(1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,4 @@ Printed: | |
1 ribbon_clamp_20_44N.stl | ||
1 ribbon_clamp_26_44N.stl | ||
4 tube_cap.stl | ||
1 tube_jig.stl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.