This reference page is linked to from the following overview topics: Scene Graph, Layers and Viewport Filters, 2D Layers, Layer Containers, Viewports, Viewport Filters.
This is the base class for anything which is an element of a list with a fixed order.
and a transparency value assigned to each element. Examples of derived classes are Mudbox's sculpt layers, paint layers, and viewport filters.
#include <layer.h>
Public Member Functions |
|
virtual float | Transparency (void) const |
Returns the current transparency of the
layer. 0 is fully transparent, 1 is opaque. |
|
virtual void | SetTransparency (float fTransparency) |
Sets the transparency of the layer. |
|
virtual Layer * | Children (void) const |
Returns a pointer to first child of this
item, or NULL if this item has no children. |
|
virtual Layer * | Next (void) const |
Returns a pointer to the next item with the
same parent as this one. |
|
virtual Layer * | Prev (void) const |
Returns a pointer to the previous item with
the same parent as this one. |
|
virtual class LayerContainer * | Container (void) const |
Returns a pointer to the object containing
this layer. |
virtual float Transparency | ( | void | ) | const [virtual] |
Returns the current transparency of the layer. 0 is fully transparent, 1 is opaque.
Reimplemented in ViewPortFilter.
virtual void SetTransparency | ( | float | fTransparency | ) | [virtual] |
Sets the transparency of the layer.
[in] | fTransparency | Transparency value, between 0 and 1. 0 is fully transparent, 1 is opaque. |
Reimplemented in ViewPortFilter.
virtual Layer* Children | ( | void | ) | const [virtual] |
Returns a pointer to first child of this item, or NULL if this item has no children.
Reimplemented in ViewPortFilter.
virtual Layer* Next | ( | void | ) | const [virtual] |
Returns a pointer to the next item with the same parent as this one.
Reimplemented from Node.
Reimplemented in ViewPortFilter.
virtual Layer* Prev | ( | void | ) | const [virtual] |
Returns a pointer to the previous item with the same parent as this one.
Reimplemented in ViewPortFilter.
virtual class LayerContainer* Container | ( | void | ) | const [virtual] |
Returns a pointer to the object containing this layer.
Reimplemented in ViewPortFilter.