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>2015-11-17 23:50:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-18 02:52:00 +0300
commit22931f2f9f35c2f227639a534ced53fece57a8a6 (patch)
treee3c335ff3b91d5ec6c34122f40a0abda73f500ad /source/blender/bmesh/tools/bmesh_decimate.h
parentd6f9ba76a5cee06aa9ec795b4611216434a1a9cf (diff)
BMesh: symmetry aware decimate
Support for decimating while maintaining symmetry on a single axis.
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_decimate.h')
-rw-r--r--source/blender/bmesh/tools/bmesh_decimate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_decimate.h b/source/blender/bmesh/tools/bmesh_decimate.h
index 6415da9a0c2..42d90cb75e5 100644
--- a/source/blender/bmesh/tools/bmesh_decimate.h
+++ b/source/blender/bmesh/tools/bmesh_decimate.h
@@ -30,7 +30,8 @@
void BM_mesh_decimate_collapse(
BMesh *bm, const float factor,
float *vweights, float vweight_factor,
- const bool do_triangulate);
+ const bool do_triangulate,
+ const int symmetry_axis, const float symmetry_eps);
void BM_mesh_decimate_unsubdivide_ex(BMesh *bm, const int iterations, const bool tag_only);
void BM_mesh_decimate_unsubdivide(BMesh *bm, const int iterations);