Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mesh.h
| Show First 20 Lines • Show All 311 Lines • ▼ Show 20 Lines | |||||
| void BKE_mesh_convert_mfaces_to_mpolys_ex( | void BKE_mesh_convert_mfaces_to_mpolys_ex( | ||||
| struct ID *id, | struct ID *id, | ||||
| struct CustomData *fdata, struct CustomData *ldata, struct CustomData *pdata, | struct CustomData *fdata, struct CustomData *ldata, struct CustomData *pdata, | ||||
| int totedge_i, int totface_i, int totloop_i, int totpoly_i, | int totedge_i, int totface_i, int totloop_i, int totpoly_i, | ||||
| struct MEdge *medge, struct MFace *mface, | struct MEdge *medge, struct MFace *mface, | ||||
| int *r_totloop, int *r_totpoly, | int *r_totloop, int *r_totpoly, | ||||
| struct MLoop **r_mloop, struct MPoly **r_mpoly); | struct MLoop **r_mloop, struct MPoly **r_mpoly); | ||||
| void BKE_mesh_polygon_flip(struct MPoly *mpoly, struct MLoop *mloop, struct CustomData *ldata); | |||||
| void BKE_mesh_polygons_flip(struct MPoly *mpoly, struct MLoop *mloop, struct CustomData *ldata, int totpoly); | |||||
| /* flush flags */ | /* flush flags */ | ||||
| void BKE_mesh_flush_hidden_from_verts_ex( | void BKE_mesh_flush_hidden_from_verts_ex( | ||||
| const struct MVert *mvert, | const struct MVert *mvert, | ||||
| const struct MLoop *mloop, | const struct MLoop *mloop, | ||||
| struct MEdge *medge, const int totedge, | struct MEdge *medge, const int totedge, | ||||
| struct MPoly *mpoly, const int totpoly); | struct MPoly *mpoly, const int totpoly); | ||||
| void BKE_mesh_flush_hidden_from_verts(struct Mesh *me); | void BKE_mesh_flush_hidden_from_verts(struct Mesh *me); | ||||
| void BKE_mesh_flush_hidden_from_polys_ex( | void BKE_mesh_flush_hidden_from_polys_ex( | ||||
| ▲ Show 20 Lines • Show All 74 Lines • Show Last 20 Lines | |||||