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>2014-03-24 05:59:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-24 06:14:19 +0400
commit551d1a1ed56d7406f440c8e858ad64f177664c5b (patch)
treea3a88cad08ba406719175d3932c1ffafd1a2457c /source/blender/blenkernel/intern/pbvh_intern.h
parent25b4b5fb9f8baf0962ff64fa881784068ba3a3a2 (diff)
Code cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/pbvh_intern.h')
-rw-r--r--source/blender/blenkernel/intern/pbvh_intern.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/pbvh_intern.h b/source/blender/blenkernel/intern/pbvh_intern.h
index 75d2a8333a1..1230d3a90b6 100644
--- a/source/blender/blenkernel/intern/pbvh_intern.h
+++ b/source/blender/blenkernel/intern/pbvh_intern.h
@@ -181,12 +181,14 @@ bool ray_face_intersection(const float ray_start[3], const float ray_normal[3],
void pbvh_update_BB_redraw(PBVH *bvh, PBVHNode **nodes, int totnode, int flag);
/* pbvh_bmesh.c */
-int pbvh_bmesh_node_raycast(PBVHNode *node, const float ray_start[3],
- const float ray_normal[3], float *dist,
- int use_original);
-
-int pbvh_bmesh_node_raycast_detail(PBVHNode *node, const float ray_start[3],
- const float ray_normal[3], float *detail, float *dist);
+int pbvh_bmesh_node_raycast(
+ PBVHNode *node, const float ray_start[3],
+ const float ray_normal[3], float *dist,
+ int use_original);
+
+int pbvh_bmesh_node_raycast_detail(
+ PBVHNode *node, const float ray_start[3],
+ const float ray_normal[3], float *detail, float *dist);
void pbvh_bmesh_normals_update(PBVHNode **nodes, int totnode);