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:
authorDalai Felinto <dfelinto@gmail.com>2013-10-16 07:24:50 +0400
committerDalai Felinto <dfelinto@gmail.com>2013-10-16 07:24:50 +0400
commit859dfccb589a099e0b3032b52c3b528f5e1f2568 (patch)
tree3546f75bed7be6b659ae74032cbe9030dc3c958e /source/blender/bmesh/tools/bmesh_beautify.h
parentfe93d4a3d848abd59a1de43a51142c3e2f3c961f (diff)
beautify: passing edge/face flags as arguments
no functional change, just preparing the ground for the beautify in triangulate modifier changes.
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_beautify.h')
-rw-r--r--source/blender/bmesh/tools/bmesh_beautify.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_beautify.h b/source/blender/bmesh/tools/bmesh_beautify.h
index 0ce8ddee2b6..210e265d706 100644
--- a/source/blender/bmesh/tools/bmesh_beautify.h
+++ b/source/blender/bmesh/tools/bmesh_beautify.h
@@ -32,6 +32,7 @@ enum {
};
void BM_mesh_beautify_fill(BMesh *bm, BMEdge **edge_array, const int edge_array_len,
- const short flag, const short method);
+ const short flag, const short method,
+ const short oflag_edge, const short oflag_face);
#endif /* __BMESH_BEAUTIFY_H__ */