Binary STL File Reader in Pure numpy
Back in 2013, wrote this small little python program to read in binary STL file.
This was lying on my blog, thought it might be of some use for others, so putting it on github.
Added a new code to visualize
from binarySTLreader import BinarySTL,ShowSTLFile
h,p,n,v1,v2,v3=BinarySTL('bent_plate.stl')
ShowSTLFile(v1,v2,v3)