* BM_mesh_remap can now reorder loops

* Wrote yet another BKE_pbvh_reorder_bmesh function
This commit is contained in:
2021-08-18 21:43:59 -07:00
parent 106f542ac4
commit de1f2c41fa
6 changed files with 496 additions and 8 deletions

View File

@@ -2764,7 +2764,7 @@ static PyObject *bpy_bmelemseq_sort(BPy_BMElemSeq *self, PyObject *args, PyObjec
return NULL;
}
BM_mesh_remap(bm, vert_idx, edge_idx, face_idx);
BM_mesh_remap(bm, vert_idx, edge_idx, face_idx, NULL);
PyMem_FREE(elem_map_idx);
PyMem_FREE(elem_idx);