Module _curveknob :: Class Element
[hide private]
[frames] | no frames]

Class Element

object --+
         |
        Element
Known Subclasses:

The base class for the different types of elements you can create in the RotoPaint node.

Instance Methods [hide private]
 
__delattr__(...)
x.__delattr__('name') <==> del x.name
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
a new object with type S, a subtype of T
__new__(T, S, ...)
 
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
elementCreate clone of element
clone(self)
bool
getVisible(self, time)
Get the value of the visible attribute at a particular time.
string
serialise(self)
Returns a string representation of the given element.
None
setVisible(self, time, value)
Set the value of the visible attribute at a particular time.

Inherited from object: __format__, __hash__, __init__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]
  locked
Whether this element is locked.
  name
The name for this element.

Inherited from object: __class__

Method Details [hide private]

__delattr__(...)

 

x.__delattr__('name') <==> del x.name

Overrides: object.__delattr__

__getattribute__(...)

 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__setattr__(...)

 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__

setVisible(self, time, value)

 

Set the value of the visible attribute at a particular time. value must be a bool.

Returns: None