Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mesh.h
| Show First 20 Lines • Show All 81 Lines • ▼ Show 20 Lines | int poly_get_adj_loops_from_vert( | ||||
| const struct MLoop *mloop, unsigned int vert, | const struct MLoop *mloop, unsigned int vert, | ||||
| unsigned int r_adj[2]); | unsigned int r_adj[2]); | ||||
| int BKE_mesh_edge_other_vert(const struct MEdge *e, int v); | int BKE_mesh_edge_other_vert(const struct MEdge *e, int v); | ||||
| void BKE_mesh_free(struct Mesh *me); | void BKE_mesh_free(struct Mesh *me); | ||||
| void BKE_mesh_init(struct Mesh *me); | void BKE_mesh_init(struct Mesh *me); | ||||
| struct Mesh *BKE_mesh_add(struct Main *bmain, const char *name); | struct Mesh *BKE_mesh_add(struct Main *bmain, const char *name); | ||||
| void BKE_mesh_copy_data(struct Main *bmain, struct Mesh *me_dst, const struct Mesh *me_src, const int flag); | |||||
| struct Mesh *BKE_mesh_copy(struct Main *bmain, const struct Mesh *me); | struct Mesh *BKE_mesh_copy(struct Main *bmain, const struct Mesh *me); | ||||
| void BKE_mesh_update_customdata_pointers(struct Mesh *me, const bool do_ensure_tess_cd); | void BKE_mesh_update_customdata_pointers(struct Mesh *me, const bool do_ensure_tess_cd); | ||||
| void BKE_mesh_ensure_skin_customdata(struct Mesh *me); | void BKE_mesh_ensure_skin_customdata(struct Mesh *me); | ||||
| void BKE_mesh_make_local(struct Main *bmain, struct Mesh *me, const bool lib_local); | void BKE_mesh_make_local(struct Main *bmain, struct Mesh *me, const bool lib_local); | ||||
| void BKE_mesh_boundbox_calc(struct Mesh *me, float r_loc[3], float r_size[3]); | void BKE_mesh_boundbox_calc(struct Mesh *me, float r_loc[3], float r_size[3]); | ||||
| void BKE_mesh_texspace_calc(struct Mesh *me); | void BKE_mesh_texspace_calc(struct Mesh *me); | ||||
| float (*BKE_mesh_orco_verts_get(struct Object *ob))[3]; | float (*BKE_mesh_orco_verts_get(struct Object *ob))[3]; | ||||
| ▲ Show 20 Lines • Show All 318 Lines • Show Last 20 Lines | |||||