gdsiistl
gdsiistl copied to clipboard
Converts GDSII files to STL files.
Line 153 to 156: length_ij = np.linalg.norm(normal_ij, axis=1) length_ik = np.linalg.norm(normal_ik, axis=1) normal_ij /= np.stack((length_ij, length_ij), axis=1) normal_ik /= np.stack((length_ik, length_ik), axis=1) The length_ij and length_ik are easily be zero...
Line 153 to 156: length_ij = np.linalg.norm(normal_ij, axis=1) length_ik = np.linalg.norm(normal_ik, axis=1) normal_ij /= np.stack((length_ij, length_ij), axis=1) normal_ik /= np.stack((length_ik, length_ik), axis=1) The length_ij and length_ik are easily be zero...
Dear Developers, I recently met a problem when I was dealing with .gds files. I'm using a simulation software called Lumerical, and the gds files they generated could have multiple...