Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_kdopbvh.h
| Show First 20 Lines • Show All 171 Lines • ▼ Show 20 Lines | int BLI_bvhtree_find_nearest_ex(BVHTree *tree, | ||||
| void *userdata, | void *userdata, | ||||
| int flag); | int flag); | ||||
| int BLI_bvhtree_find_nearest(BVHTree *tree, | int BLI_bvhtree_find_nearest(BVHTree *tree, | ||||
| const float co[3], | const float co[3], | ||||
| BVHTreeNearest *nearest, | BVHTreeNearest *nearest, | ||||
| BVHTree_NearestPointCallback callback, | BVHTree_NearestPointCallback callback, | ||||
| void *userdata); | void *userdata); | ||||
| int BLI_bvhtree_find_nearest_first(BVHTree *tree, | |||||
| const float co[3], | |||||
| const float dist_sq, | |||||
| BVHTree_NearestPointCallback callback, | |||||
| void *userdata); | |||||
| int BLI_bvhtree_ray_cast_ex(BVHTree *tree, | int BLI_bvhtree_ray_cast_ex(BVHTree *tree, | ||||
| const float co[3], | const float co[3], | ||||
| const float dir[3], | const float dir[3], | ||||
| float radius, | float radius, | ||||
| BVHTreeRayHit *hit, | BVHTreeRayHit *hit, | ||||
| BVHTree_RayCastCallback callback, | BVHTree_RayCastCallback callback, | ||||
| void *userdata, | void *userdata, | ||||
| int flag); | int flag); | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||