Package nuke :: Module rotopaint
[hide private]
[frames] | no frames]

Source Code for Module nuke.rotopaint

 1  """The python interface to the RotoPaint node in Nuke. 
 2   
 3  Use help('_rotopaint') to get detailed help on the classes exposed here. 
 4   
 5  This module provides the public interface to the rotopaint module and will 
 6  remain stable. It uses an underlying native module called _rotopaint to 
 7  provide this interface. While there is nothing stopping you from using the 
 8  _rotopaint module directly, it may change in a future release and break your 
 9  scripts. 
10  """ 
11   
12  from curvelib import * 
13  from nuke import Hash 
14   
15  import _rotopaint 
16  from _rotopaint import ShapeControlPoint 
17  from _rotopaint import Element 
18  from _rotopaint import Layer 
19  from _rotopaint import Stroke 
20  from _rotopaint import Shape 
21  from _rotopaint import RotoKnob 
22