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 ?
Here's the document