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>2014-03-12 18:46:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-12 18:49:47 +0400
commit35ed7486c76f11b397d0ff131160f8629af3b49b (patch)
tree1123cfb238a415954337c01c41a2d86e1aa20603 /source/blender/editors/sculpt_paint/paint_vertex.c
parent5bceb00a61f1cd98c049cc11931550acf08426c7 (diff)
Mesh API: rename 'octree' to 'spatial' since internally its using kdtree
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_vertex.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c
index 12eb1524515..e058f924a7b 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex.c
+++ b/source/blender/editors/sculpt_paint/paint_vertex.c
@@ -2060,8 +2060,8 @@ static int wpaint_mode_toggle_exec(bContext *C, wmOperator *op)
}
/* weight paint specific */
- mesh_octree_table(NULL, NULL, NULL, 'e');
- mesh_mirrtopo_table(NULL, 'e');
+ ED_mesh_mirror_spatial_table(NULL, NULL, NULL, 'e');
+ ED_mesh_mirror_topo_table(NULL, 'e');
paint_cursor_delete_textures();
}
@@ -2076,7 +2076,7 @@ static int wpaint_mode_toggle_exec(bContext *C, wmOperator *op)
BKE_paint_init(&wp->paint, PAINT_CURSOR_WEIGHT_PAINT);
/* weight paint specific */
- mesh_octree_table(ob, NULL, NULL, 's');
+ ED_mesh_mirror_spatial_table(ob, NULL, NULL, 's');
ED_vgroup_sync_from_pose(ob);
}