Commit: 8b2fbd6bbf6f4a56dbc1fa899dd44e21a2c17d0a
Author: Campbell Barton
Date:   Thu Nov 20 11:03:38 2014 +0100
Branches: master
https://developer.blender.org/rB8b2fbd6bbf6f4a56dbc1fa899dd44e21a2c17d0a

mathutils.kdtree: fix docstrings

===================================================================

M       source/blender/python/mathutils/mathutils_kdtree.c

===================================================================

diff --git a/source/blender/python/mathutils/mathutils_kdtree.c 
b/source/blender/python/mathutils/mathutils_kdtree.c
index 519778a..9dc246f 100644
--- a/source/blender/python/mathutils/mathutils_kdtree.c
+++ b/source/blender/python/mathutils/mathutils_kdtree.c
@@ -126,7 +126,7 @@ static void PyKDTree__tp_dealloc(PyKDTree *self)
 }
 
 PyDoc_STRVAR(py_kdtree_insert_doc,
-".. method:: insert(index, co)\n"
+".. method:: insert(co, index)\n"
 "\n"
 "   Insert a point into the KDTree.\n"
 "\n"
@@ -171,6 +171,10 @@ PyDoc_STRVAR(py_kdtree_balance_doc,
 ".. method:: balance()\n"
 "\n"
 "   Balance the tree.\n"
+"\n"
+".. note::\n"
+"\n"
+"   This builds the entire tree, avoid calling after each insertion.\n"
 );
 static PyObject *py_kdtree_balance(PyKDTree *self)
 {

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to