Exppython:
- Updated two doc files
This commit is contained in:
@@ -156,9 +156,13 @@ class NMVert:
|
|||||||
The NMVert object
|
The NMVert object
|
||||||
=================
|
=================
|
||||||
This object holds mesh vertex data.
|
This object holds mesh vertex data.
|
||||||
|
@type co: list of three floats
|
||||||
@cvar co: The vertex coordinates (x, y, z).
|
@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.
|
@cvar uvco: The vertex texture "sticky" coordinates.
|
||||||
|
@type index: int
|
||||||
@cvar index: The vertex index, if owned by a mesh.
|
@cvar index: The vertex index, if owned by a mesh.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|||||||
@@ -132,3 +132,10 @@ def DrawProgressBar (done, text):
|
|||||||
@type text: string
|
@type text: string
|
||||||
@param text: Info about what is currently being done "behind the scenes".
|
@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].
|
||||||
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user