Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-08-20 04:03:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-20 04:03:34 +0300
commit023b1a3843b22c42b1fc9c1725b081a31dc08a7a (patch)
tree1ba335d989894b50425bd7c195852105d22a28f9 /source/blender/blenlib/BLI_kdopbvh.h
parent4224d22039a802e8d3f3ee3a73b0c6f2b9d93883 (diff)
Cleanup: remove unused BVH_ONQUAD flag
Diffstat (limited to 'source/blender/blenlib/BLI_kdopbvh.h')
-rw-r--r--source/blender/blenlib/BLI_kdopbvh.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_kdopbvh.h b/source/blender/blenlib/BLI_kdopbvh.h
index 4981b163cdf..9f16b02da33 100644
--- a/source/blender/blenlib/BLI_kdopbvh.h
+++ b/source/blender/blenlib/BLI_kdopbvh.h
@@ -47,9 +47,6 @@ typedef struct BVHTreeOverlap {
int indexB;
} BVHTreeOverlap;
-/* flags */
-#define BVH_ONQUAD (1 << 0)
-
typedef struct BVHTreeNearest {
int index; /* the index of the nearest found (untouched if none is found within a dist radius from the given coordinates) */
float co[3]; /* nearest coordinates (untouched it none is found within a dist radius from the given coordinates) */
@@ -69,7 +66,6 @@ typedef struct BVHTreeRayHit {
float co[3]; /* coordinates of the hit point */
float no[3]; /* normal on hit point */
float dist; /* distance to the hit point */
- int flags;
} BVHTreeRayHit;
/* callback must update nearest in case it finds a nearest result */