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:
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_bevel.h')
-rw-r--r--source/blender/bmesh/tools/bmesh_bevel.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/bmesh/tools/bmesh_bevel.h b/source/blender/bmesh/tools/bmesh_bevel.h
index 496be9219b7..45bebbb33ce 100644
--- a/source/blender/bmesh/tools/bmesh_bevel.h
+++ b/source/blender/bmesh/tools/bmesh_bevel.h
@@ -21,6 +21,7 @@
* \ingroup bmesh
*/
+struct CurveProfile;
struct MDeformVert;
void BM_mesh_bevel(BMesh *bm,
@@ -42,6 +43,8 @@ void BM_mesh_bevel(BMesh *bm,
const int miter_outer,
const int miter_inner,
const float spread,
- const float smoothresh);
-
+ const float smoothresh,
+ const bool use_custom_profile,
+ const struct CurveProfile *custom_profile,
+ const int vmesh_method);
#endif /* __BMESH_BEVEL_H__ */