Exppython:

- Updated two doc files
This commit is contained in:
2003-09-03 04:04:17 +00:00
parent bb824b08b7
commit 65746ab10a
2 changed files with 12 additions and 1 deletions

View File

@@ -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.
"""

View File

@@ -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].
"""