Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/pbvh_intern.h
| Show First 20 Lines • Show All 132 Lines • ▼ Show 20 Lines | struct PBVH { | ||||
| MVert *verts; | MVert *verts; | ||||
| const MPoly *mpoly; | const MPoly *mpoly; | ||||
| const MLoop *mloop; | const MLoop *mloop; | ||||
| const MLoopTri *looptri; | const MLoopTri *looptri; | ||||
| CustomData *vdata; | CustomData *vdata; | ||||
| CustomData *ldata; | CustomData *ldata; | ||||
| CustomData *pdata; | CustomData *pdata; | ||||
| float (*fnors)[3]; | |||||
| int face_sets_color_seed; | int face_sets_color_seed; | ||||
| int face_sets_color_default; | int face_sets_color_default; | ||||
| int *face_sets; | int *face_sets; | ||||
| /* Grid Data */ | /* Grid Data */ | ||||
| CCGKey gridkey; | CCGKey gridkey; | ||||
| CCGElem **grids; | CCGElem **grids; | ||||
| void **gridfaces; | void **gridfaces; | ||||
| ▲ Show 20 Lines • Show All 88 Lines • Show Last 20 Lines | |||||