code cleanup: minor BMESH_TODO's, some were left in even though they were done/invalid.

This commit is contained in:
2013-04-15 04:34:14 +00:00
parent 8cca2fec82
commit be71c46b24
11 changed files with 91 additions and 91 deletions

View File

@@ -354,7 +354,7 @@ static PyObject *bpy_bm_utils_edge_rotate(PyObject *UNUSED(self), PyObject *args
bm = py_edge->bm;
e_new = BM_edge_rotate(bm, py_edge->e, do_ccw, 0); /* BMESH_TODO - expose to API */
e_new = BM_edge_rotate(bm, py_edge->e, do_ccw, 0);
if (e_new) {
return BPy_BMEdge_CreatePyObject(bm, e_new);