Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mesh_remap.h
| Show All 23 Lines | |||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct CustomData; | struct CustomData; | ||||
| struct CustomData_MeshMasks; | struct CustomData_MeshMasks; | ||||
| struct MVert; | struct MVert; | ||||
| struct MemArena; | struct MemArena; | ||||
| struct Mesh; | struct Mesh; | ||||
| struct SpaceTransform; | |||||
| /* Generic ways to map some geometry elements from a source mesh to a dest one. */ | /* Generic ways to map some geometry elements from a source mesh to a dest one. */ | ||||
| typedef struct MeshPairRemapItem { | typedef struct MeshPairRemapItem { | ||||
| int sources_num; | int sources_num; | ||||
| int *indices_src; /* NULL if no source found. */ | int *indices_src; /* NULL if no source found. */ | ||||
| float *weights_src; /* NULL if no source found, else, always normalized! */ | float *weights_src; /* NULL if no source found, else, always normalized! */ | ||||
| /* UNUSED (at the moment)*/ | /* UNUSED (at the moment)*/ | ||||
| ▲ Show 20 Lines • Show All 196 Lines • Show Last 20 Lines | |||||