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/source
diff options
context:
space:
mode:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-09-03 08:04:17 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-09-03 08:04:17 +0400
commit65746ab10a1031e4a1275c21051bce0064be5219 (patch)
tree8fb1668e31f40026e16ee4dbfae451e7c629c7b6 /source
parentbb824b08b725f85f1167f0ae051a5ef772a72608 (diff)
Exppython:
- Updated two doc files
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/api2_2x/doc/NMesh.py6
-rw-r--r--source/blender/python/api2_2x/doc/Window.py7
2 files changed, 12 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/doc/NMesh.py b/source/blender/python/api2_2x/doc/NMesh.py
index f631726029b..99dbe9f3790 100644
--- a/source/blender/python/api2_2x/doc/NMesh.py
+++ b/source/blender/python/api2_2x/doc/NMesh.py
@@ -156,9 +156,13 @@ class NMVert:
The NMVert object
=================
This object holds mesh vertex data.
+ @type co: list of three floats
@cvar co: The vertex coordinates (x, y, z).
- @cvar no: The vertex normal vector (nx, ny, nz).
+ @type no: list of three floats
+ @cvar no: The vertex normal vector (x, y, z).
+ @type uvco: list of two floats
@cvar uvco: The vertex texture "sticky" coordinates.
+ @type index: int
@cvar index: The vertex index, if owned by a mesh.
"""
diff --git a/source/blender/python/api2_2x/doc/Window.py b/source/blender/python/api2_2x/doc/Window.py
index b2d2d8ba0a3..bbdb28f4247 100644
--- a/source/blender/python/api2_2x/doc/Window.py
+++ b/source/blender/python/api2_2x/doc/Window.py
@@ -132,3 +132,10 @@ def DrawProgressBar (done, text):
@type text: string
@param text: Info about what is currently being done "behind the scenes".
"""
+
+def GetCursorPos ():
+ """
+ Get the current 3d cursor position.
+ @rtype: list of three floats
+ @return: the current position: [x, y, z].
+ """