forked from blender/blender
main sync #3
@ -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]);
|
||||
/**
|
||||
|
@ -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++;
|
||||
}
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
|
Loading…
Reference in New Issue
Block a user