Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/cdderivedmesh.c
| Show First 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | |||||
| #include <string.h> | #include <string.h> | ||||
| #include <limits.h> | #include <limits.h> | ||||
| #include <math.h> | #include <math.h> | ||||
| typedef struct { | typedef struct { | ||||
| DerivedMesh dm; | DerivedMesh dm; | ||||
| /* these point to data in the DerivedMesh custom data layers, | /* these point to data in the DerivedMesh custom data layers, | ||||
| * they are only here for efficiency and convenience **/ | * they are only here for efficiency and convenience */ | ||||
| MVert *mvert; | MVert *mvert; | ||||
| MEdge *medge; | MEdge *medge; | ||||
| MFace *mface; | MFace *mface; | ||||
| MLoop *mloop; | MLoop *mloop; | ||||
| MPoly *mpoly; | MPoly *mpoly; | ||||
| /* Cached */ | /* Cached */ | ||||
| struct PBVH *pbvh; | struct PBVH *pbvh; | ||||
| ▲ Show 20 Lines • Show All 1,329 Lines • Show Last 20 Lines | |||||