[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [48352] branches/soc-2012-swiss_cheese/ source/blender/editors/mesh/editmesh_bvh.h: fixed wierd const primitive parameter

Jason Wilkins Jason.A.Wilkins at gmail.com
Thu Jun 28 02:00:17 CEST 2012


Revision: 48352
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48352
Author:   jwilkins
Date:     2012-06-28 00:00:09 +0000 (Thu, 28 Jun 2012)
Log Message:
-----------
fixed wierd const primitive parameter

Modified Paths:
--------------
    branches/soc-2012-swiss_cheese/source/blender/editors/mesh/editmesh_bvh.h

Modified: branches/soc-2012-swiss_cheese/source/blender/editors/mesh/editmesh_bvh.h
===================================================================
--- branches/soc-2012-swiss_cheese/source/blender/editors/mesh/editmesh_bvh.h	2012-06-27 22:27:04 UTC (rev 48351)
+++ branches/soc-2012-swiss_cheese/source/blender/editors/mesh/editmesh_bvh.h	2012-06-28 00:00:09 UTC (rev 48352)
@@ -57,7 +57,7 @@
                       struct ARegion *ar, struct View3D *v3d, struct Object *obedit);
 
 /*find a vert closest to co in a sphere of radius maxdist*/
-struct BMVert *BMBVH_FindClosestVert(struct BMBVHTree *tree, const float co[3], const float maxdist);
+struct BMVert *BMBVH_FindClosestVert(struct BMBVHTree *tree, const float co[3], float maxdist);
 
 /* BMBVH_NewBVH flag parameter */
 enum {




More information about the Bf-blender-cvs mailing list