I have an OBJ File Generated by Meshlab with Vertices and Faces data. In MATLAB i used the function ''patch'' with Vertices data in 1 array (5937x3) and Faces (11870x3) data in another and the result is this:
Simplified version of the code
[V,F] = read_vertices_and_faces_from_obj_file(filename);
patch('Vertices',V,'Faces',F,'FaceColor','r','LineStyle','-')
axis equal
The question is,how can I do that in Python ? There's a simple way like in Matlab??
I'll really appreciate any help.