Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/pbvh_intern.h
| Show First 20 Lines • Show All 126 Lines • ▼ Show 20 Lines | struct PBVH { | ||||
| int leaf_limit; | int leaf_limit; | ||||
| /* Mesh data */ | /* Mesh data */ | ||||
| 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; | |||||
| /* Grid Data */ | /* Grid Data */ | ||||
| CCGKey gridkey; | CCGKey gridkey; | ||||
| CCGElem **grids; | CCGElem **grids; | ||||
| void **gridfaces; | void **gridfaces; | ||||
| const DMFlagMat *grid_flag_mats; | const DMFlagMat *grid_flag_mats; | ||||
| int totgrid; | int totgrid; | ||||
| BLI_bitmap **grid_hidden; | BLI_bitmap **grid_hidden; | ||||
| ▲ Show 20 Lines • Show All 80 Lines • Show Last 20 Lines | |||||