Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_shrinkwrap.h
| Show First 20 Lines • Show All 69 Lines • ▼ Show 20 Lines | |||||
| typedef struct ShrinkwrapTreeData { | typedef struct ShrinkwrapTreeData { | ||||
| Mesh *mesh; | Mesh *mesh; | ||||
| BVHTree *bvh; | BVHTree *bvh; | ||||
| BVHTreeFromMesh treeData; | BVHTreeFromMesh treeData; | ||||
| const struct MPoly *polys; | const struct MPoly *polys; | ||||
| const float (*vert_normals)[3]; | const float (*vert_normals)[3]; | ||||
| const int *corner_edges; | |||||
| const float (*poly_normals)[3]; | const float (*poly_normals)[3]; | ||||
| const float (*clnors)[3]; | const float (*clnors)[3]; | ||||
| ShrinkwrapBoundaryData *boundary; | ShrinkwrapBoundaryData *boundary; | ||||
| } ShrinkwrapTreeData; | } ShrinkwrapTreeData; | ||||
| /** | /** | ||||
| * Checks if the modifier needs target normals with these settings. | * Checks if the modifier needs target normals with these settings. | ||||
| */ | */ | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||