Fix broken Collada from rBrB6d0cae56e84306ed.

This commit is contained in:
Bastien Montagne
2016-04-29 16:56:20 +02:00
parent 2ba7b3ea1a
commit 467e12514e

View File

@@ -357,9 +357,12 @@ void bc_triangulate_mesh(Mesh *me)
int quad_method = MOD_TRIANGULATE_QUAD_SHORTEDGE; /* XXX: The triangulation method selection could be offered in the UI */
BMesh *bm = BM_mesh_create(&bm_mesh_allocsize_default);
BM_mesh_bm_from_me(bm, me, true, false, 0);
BMeshFromMeshParams bm_from_me_params = {0};
bm_from_me_params.calc_face_normal = true;
BM_mesh_bm_from_me(bm, me, &bm_from_me_params);
BM_mesh_triangulate(bm, quad_method, use_beauty, tag_only, NULL, NULL, NULL);
BM_mesh_bm_to_me(bm, me, false);
BMeshToMeshParams bm_to_me_params = {0};
BM_mesh_bm_to_me(bm, me, &bm_to_me_params);
BM_mesh_free(bm);
}