BlueBrain / atlas-placement-hints

Tools to compute placement hints in the context of brain atlases.
Apache License 2.0
1 stars 2 forks source link

trimesh with version >= 3.11.2 returns vertices in different order #5

Closed mgeplf closed 2 years ago

mgeplf commented 2 years ago

Old expected_vertices = [[0, 0, 1], [0, 1, 0], [-1, 0, 0], [1, 0, 0]] expected_faces = [[2, 3, 0], [2, 0, 1], [0, 3, 1]]

Gets translated to the new vertices with: 0 -> 3 1 -> 2 2 -> 0 3 -> 1