_geo :: AttribContext :: Class AttribContext
[hide private]
[frames] | no frames]

Class AttribContext

object --+
         |
        AttribContext

A set of selected items on a single of 3d object.

Instance Methods [hide private]
 
__delattr__(...)
x.__delattr__('name') <==> del x.name
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
 
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
bool
empty(self)
Whether this attribute is empty, i.e.

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

Properties [hide private]
  attribute
The attribute itself.
  channel
The channel number for the underlying attribute.
  group
What this attribute applies to (points, vertices, faces, etc.).
  name
The name for the attribute.
  recursive
Boolean value to indicate whether or not the attribute is applied recursively.
  type
The type of the attribute values.
  varying
Boolean value to indicate whether or not the attribute varies.

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__

__setattr__(...)

 

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

Overrides: object.__setattr__

empty(self)

 

Whether this attribute is empty, i.e. contains no values, or not.

Returns: bool