A thin wrapper for :py:func:`get_degenerated_faces_raw`.
(mesh)
| 35 | return np.array(PyMesh.get_degenerated_faces(vertices, faces)) |
| 36 | |
| 37 | def get_degenerated_faces(mesh): |
| 38 | """ A thin wrapper for :py:func:`get_degenerated_faces_raw`. |
| 39 | """ |
| 40 | return get_degenerated_faces_raw(mesh.vertices, mesh.faces) |
| 41 | |
| 42 | def get_triangle_orientations_raw(vertices, faces): |
| 43 | """ Compute orientation of each triangle. A triangle is considered as |
nothing calls this directly
no test coverage detected