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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-03-14 08:46:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-14 08:46:12 +0400
commitf15c15e992a9836a7295166af275522690ada315 (patch)
treeceab2edb87f3b2d1a8b05a661134f4a2696496a6 /doc
parent99f72dfbfcb004418ae3c701f3badfd36996e6e5 (diff)
bmesh py api: finished todo - editable select_history
eg: bm.select_history = vert, face, edge bm.select_history.add(edge)
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/include__bmesh.rst1
-rw-r--r--doc/python_api/sphinx_doc_gen.py5
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/python_api/rst/include__bmesh.rst b/doc/python_api/rst/include__bmesh.rst
index 1c702275f62..2481c4a739c 100644
--- a/doc/python_api/rst/include__bmesh.rst
+++ b/doc/python_api/rst/include__bmesh.rst
@@ -33,7 +33,6 @@ For an overview of BMesh data types and how they reference each other see:
.. todo::
* add access to BMesh **walkers**
- * add access selection history (readonly access done)
* add a way to re-tessellate an editmode bmesh.
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 49193ad8f22..b15fcd9303b 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -94,12 +94,13 @@ def handle_args():
usage=SCRIPT_HELP_MSG
)
- # optional arguments
+ # optional arguments
parser.add_argument("-o", "--output",
dest="output_dir",
type=str,
default=SCRIPT_DIR,
- help="Path of the API docs (default=<script dir>)",
+ # XXX, THIS ISNT WORKING, EXAMPLE SCRIPTS WILL NOT BE FOUND
+ help="Path of the API docs (default=<script dir>).",
required=False)
parser.add_argument("-B", "--sphinx-build",