main sync #3

Merged
Patrick Busch merged 318 commits from blender/blender:main into main 2023-03-17 15:52:21 +01:00
2 changed files with 0 additions and 16 deletions
Showing only changes of commit 68ec41d00e - Show all commits

View File

@ -571,9 +571,6 @@ float BKE_mesh_calc_area(const struct Mesh *me);
void BKE_mesh_poly_edgehash_insert(struct EdgeHash *ehash,
const struct MPoly *poly,
const struct MLoop *mloop);
void BKE_mesh_poly_edgebitmap_insert(unsigned int *edge_bitmap,
const struct MPoly *poly,
const struct MLoop *mloop);
bool BKE_mesh_center_median(const struct Mesh *me, float r_cent[3]);
/**

View File

@ -279,19 +279,6 @@ void BKE_mesh_poly_edgehash_insert(EdgeHash *ehash, const MPoly *poly, const MLo
}
}
void BKE_mesh_poly_edgebitmap_insert(uint *edge_bitmap, const MPoly *poly, const MLoop *mloop)
{
const MLoop *ml;
int i = poly->totloop;
ml = mloop;
while (i-- != 0) {
BLI_BITMAP_ENABLE(edge_bitmap, ml->e);
ml++;
}
}
/** \} */
/* -------------------------------------------------------------------- */