A thin wrapper of ``get_triangle_orientations_raw``.
(mesh)
| 57 | return PyMesh.get_triangle_orientations(vertices, faces) |
| 58 | |
| 59 | def get_triangle_orientations(mesh): |
| 60 | """ A thin wrapper of ``get_triangle_orientations_raw``. |
| 61 | """ |
| 62 | return get_triangle_orientations_raw(mesh.vertices, mesh.faces) |
| 63 |
nothing calls this directly
no test coverage detected