Skip to content

Latest commit

 

History

History
executable file
·
21 lines (12 loc) · 591 Bytes

File metadata and controls

executable file
·
21 lines (12 loc) · 591 Bytes

BinarySTLFileReader

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.

image

Added a new code to visualize

Example

from binarySTLreader import BinarySTL,ShowSTLFile
h,p,n,v1,v2,v3=BinarySTL('bent_plate.stl')
ShowSTLFile(v1,v2,v3)