Mesh API: rename 'octree' to 'spatial' since internally its using kdtree

This commit is contained in:
2014-03-13 01:46:21 +11:00
parent 5bceb00a61
commit 35ed7486c7
10 changed files with 28 additions and 28 deletions

View File

@@ -402,8 +402,8 @@ void EDBM_mesh_free(BMEditMesh *em)
/* These tables aren't used yet, so it's not strictly necessary
* to 'end' them (with 'e' param) but if someone tries to start
* using them, having these in place will save a lot of pain */
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');
BKE_editmesh_free(em);
}