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>2019-08-14 21:46:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-14 21:46:51 +0300
commit655f5818a589539b286641450c00d27a5cac2bff (patch)
treebbbdb97b48792f26e0ff0daee997d767e4b93411 /source/blender/editors/object/object_remesh.c
parent76e5b4bee4ed4b7bce5ffb7f9cbf0b5615c7473b (diff)
Cleanup: use BKE_mesh_ prefix for the remesh API
These functions deal with voxel remeshing of Mesh data, and aren't related to MOD_remesh.c for e.g. Name so other kinds of remeshing wont cause confusion.
Diffstat (limited to 'source/blender/editors/object/object_remesh.c')
-rw-r--r--source/blender/editors/object/object_remesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_remesh.c b/source/blender/editors/object/object_remesh.c
index 2234b3875b7..1bcac9b4739 100644
--- a/source/blender/editors/object/object_remesh.c
+++ b/source/blender/editors/object/object_remesh.c
@@ -47,7 +47,7 @@
#include "BKE_report.h"
#include "BKE_scene.h"
#include "BKE_customdata.h"
-#include "BKE_remesh.h"
+#include "BKE_mesh_remesh_voxel.h"
#include "DEG_depsgraph.h"
#include "DEG_depsgraph_build.h"
@@ -102,7 +102,7 @@ static int voxel_remesh_exec(bContext *C, wmOperator *op)
ED_sculpt_undo_geometry_begin(ob);
}
- new_mesh = BKE_remesh_voxel_to_mesh_nomain(mesh, mesh->remesh_voxel_size);
+ new_mesh = BKE_mesh_remesh_voxel_to_mesh_nomain(mesh, mesh->remesh_voxel_size);
if (!new_mesh) {
return OPERATOR_CANCELLED;