[Solved] Selection of Face of a STL by Face Normal value Threshold
I’m sure there’s a python library to load stl files, but I’ve always just written my own, since the file format is pretty simple (see the Wikipedia article for file format description). Here is my code to read the stl file: import numpy as np import struct def Unique(inputList): “”” Given an M x N … Read more