Draw.c fixed error in exception I added with string max length.

Window.py added note about the view offset being flipped.
editview.c Fly mode timed redraws so motion is the same speed erespective of scene complexity.
This commit is contained in:
2006-06-23 23:58:50 +00:00
parent 9818b75a28
commit 4d061263a9
3 changed files with 35 additions and 16 deletions

View File

@@ -299,13 +299,15 @@ def GetViewOffset ():
Get the current VIEW3D offset values.
@rtype: list of floats
@return: a list with three floats: [x,y,z].
@note: The 3 values returned are flipped in comparison object locations.
"""
def SetViewOffset (ofs):
"""
Set the current VIEW3D offset values.
Set the current VIEW3D offset values.
@type ofs: 3 floats or list of 3 floats
@param ofs: the new view offset values.
@note: The value you give flipped in comparison object locations.
"""
def CameraView (camtov3d = 0):