Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mesh_iterators.h
| Show All 35 Lines | void BKE_mesh_foreach_mapped_vert(struct Mesh *mesh, | ||||
| int index, | int index, | ||||
| const float co[3], | const float co[3], | ||||
| const float no_f[3], | const float no_f[3], | ||||
| const short no_s[3]), | const short no_s[3]), | ||||
| void *userData, | void *userData, | ||||
| MeshForeachFlag flag); | MeshForeachFlag flag); | ||||
| void BKE_mesh_foreach_mapped_edge( | void BKE_mesh_foreach_mapped_edge( | ||||
| struct Mesh *mesh, | struct Mesh *mesh, | ||||
| int tot_edges, | |||||
| void (*func)(void *userData, int index, const float v0co[3], const float v1co[3]), | void (*func)(void *userData, int index, const float v0co[3], const float v1co[3]), | ||||
| void *userData); | void *userData); | ||||
| void BKE_mesh_foreach_mapped_loop(struct Mesh *mesh, | void BKE_mesh_foreach_mapped_loop(struct Mesh *mesh, | ||||
| void (*func)(void *userData, | void (*func)(void *userData, | ||||
| int vertex_index, | int vertex_index, | ||||
| int face_index, | int face_index, | ||||
| const float co[3], | const float co[3], | ||||
| const float no[3]), | const float no[3]), | ||||
| Show All 20 Lines | |||||