0

I have an STL file, I now need to read the vertices and face value of that STL file using trimesh.

 myobj = trimesh.load_mesh("file.stl", enable_post_processing=True, solid=True) 
 myobj.faces #gives me ndarray of faces 

how to read vertices from myobj ?

1 Answers1

0
myobj.vertices

Here's the document