[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [18461] branches/bmesh/blender/source/ blender/bmesh/bmesh_queries.h: fixing a function declaration and a compiling error

Joilnen Leite vma_bad_list at yahoo.com
Mon Jan 12 09:06:30 CET 2009


Revision: 18461
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=18461
Author:   pidhash
Date:     2009-01-12 09:06:20 +0100 (Mon, 12 Jan 2009)

Log Message:
-----------
fixing a function declaration and a compiling error

Modified Paths:
--------------
    branches/bmesh/blender/source/blender/bmesh/bmesh_queries.h

Modified: branches/bmesh/blender/source/blender/bmesh/bmesh_queries.h
===================================================================
--- branches/bmesh/blender/source/blender/bmesh/bmesh_queries.h	2009-01-12 04:07:06 UTC (rev 18460)
+++ branches/bmesh/blender/source/blender/bmesh/bmesh_queries.h	2009-01-12 08:06:20 UTC (rev 18461)
@@ -5,7 +5,8 @@
 int BM_Count_Element(struct BMesh *bm, int type);
 int BM_Vert_In_Edge(struct BMEdge *e, struct BMVert *v);
 int BM_Vert_In_Face(struct BMFace *f, struct BMVert *v);
-int BM_Verts_In_Face(struct BMFace *f, struct BMVert **varr, int len);
+// int BM_Verts_In_Face(struct BMFace *f, struct BMVert **varr, int len);
+int BM_Verts_In_Face(struct BMesh *bm, struct BMFace *f, struct BMVert **varr, int len);
 int BM_Edge_In_Face(struct BMFace *f, struct BMEdge *e);
 int BM_Verts_In_Edge(struct BMVert *v1, struct BMVert *v2, BMEdge *e);
 





More information about the Bf-blender-cvs mailing list