- spelling error and example fix

This commit is contained in:
2004-05-15 03:02:11 +00:00
parent 95c546bd9d
commit d00ad69b06
2 changed files with 4 additions and 4 deletions

View File

@@ -124,9 +124,9 @@ class Action:
@param channel: The name of a channel in this action to be removed
"""
def getAllChannelIpo():
def getAllChannelIpos():
"""
Get the all the Ipos for this action
@rtype: PyList of PyIpos
@rtype: PyDict [channel : PyIpo]
@return: the Ipos for all the channels in the action
"""

View File

@@ -10,8 +10,8 @@ This module provides access to B{Scene Rendering Contexts} in Blender.
Example::
import Blender
from Blender import Scene
from Blender import Scene.Render
from Blender import *
from Blender.Scene import Render
scn = Scene.GetCurrent()
context = scn.getRenderingContext()