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>2016-02-10 21:36:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-10 21:39:39 +0300
commitfce0e31bcf10efd97492f9303fefeb6a0b894889 (patch)
tree73ec8968611c8e0ff6ace46d762cae15fd454b4f /source/blender/blenlib/BLI_kdopbvh.h
parent8e85ef1c7df509d0abd8ec9b8766f149d6c3a1cc (diff)
Docs: use doxygen sections
Diffstat (limited to 'source/blender/blenlib/BLI_kdopbvh.h')
-rw-r--r--source/blender/blenlib/BLI_kdopbvh.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_kdopbvh.h b/source/blender/blenlib/BLI_kdopbvh.h
index 2349be11aa7..d7ff55eda7a 100644
--- a/source/blender/blenlib/BLI_kdopbvh.h
+++ b/source/blender/blenlib/BLI_kdopbvh.h
@@ -136,8 +136,9 @@ float BLI_bvhtree_getepsilon(const BVHTree *tree);
/* find nearest node to the given coordinates
* (if nearest is given it will only search nodes where square distance is smaller than nearest->dist) */
-int BLI_bvhtree_find_nearest(BVHTree *tree, const float co[3], BVHTreeNearest *nearest,
- BVHTree_NearestPointCallback callback, void *userdata);
+int BLI_bvhtree_find_nearest(
+ BVHTree *tree, const float co[3], BVHTreeNearest *nearest,
+ BVHTree_NearestPointCallback callback, void *userdata);
int BLI_bvhtree_find_nearest_to_ray(
BVHTree *tree, const float co[3], const float dir[3], float radius, BVHTreeNearest *nearest,
@@ -162,8 +163,9 @@ int BLI_bvhtree_ray_cast_all(
float BLI_bvhtree_bb_raycast(const float bv[6], const float light_start[3], const float light_end[3], float pos[3]);
/* range query */
-int BLI_bvhtree_range_query(BVHTree *tree, const float co[3], float radius,
- BVHTree_RangeQuery callback, void *userdata);
+int BLI_bvhtree_range_query(
+ BVHTree *tree, const float co[3], float radius,
+ BVHTree_RangeQuery callback, void *userdata);
void BLI_bvhtree_walk_dfs(
BVHTree *tree,