Cleanup: remove unused struct member

Merged with soc-2016-pbvh-painting, no longer needed.
This commit is contained in:
Campbell Barton 2017-10-05 17:52:05 +11:00
parent 82d6a30015
commit 21d91de8e7
1 changed files with 0 additions and 4 deletions

View File

@ -1540,7 +1540,6 @@ typedef struct {
bool hit;
float dist;
bool original;
PBVHNode* node;
} SculptRaycastData;
typedef struct {
@ -4327,9 +4326,6 @@ static void sculpt_raycast_cb(PBVHNode *node, void *data_v, float *tmin)
{
srd->hit = 1;
*tmin = srd->dist;
//for vwpaint testing
srd->node = node;
}
}
}