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>2012-02-23 08:26:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 08:26:24 +0400
commitd2328154810ec6e4b477ab937908060b237f596e (patch)
tree932d91c1fdbbb95a13360357421917b3d6d43b8b /source/blender/bmesh/bmesh.h
parentecb6f1361857bd6eae6e6785fcc1967ff84aae43 (diff)
- swap arg order for BM_face_copy() boolean options.
- use edge example for BM_face_split().
Diffstat (limited to 'source/blender/bmesh/bmesh.h')
-rw-r--r--source/blender/bmesh/bmesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/bmesh.h b/source/blender/bmesh/bmesh.h
index ae85c40e270..4ecc58e293a 100644
--- a/source/blender/bmesh/bmesh.h
+++ b/source/blender/bmesh/bmesh.h
@@ -189,7 +189,7 @@ BM_INLINE void BM_elem_index_set(void *element, const int index);
BM_INLINE int BM_elem_index_get(const void *element);
/* todo */
-BMFace *BM_face_copy(BMesh *bm, BMFace *f, int copyedges, int copyverts);
+BMFace *BM_face_copy(BMesh *bm, BMFace *f, const short copyverts, const short copyedges);
/* copies loop data from adjacent faces */
void BM_face_copy_shared(BMesh *bm, BMFace *f);