ePurityStatus#
- class omni.graph.core.ePurityStatus#
 Bases:
pybind11_objectThe purity of the node implementation. For some context, a “pure” node is one whose initialize, compute, and release methods are entirely deterministic, i.e. they will always produce the same output attribute values for a given set of input attribute values, and do not access, rely on, or otherwise mutate data external to the node’s scope
Members:
E_IMPURE : Node is assumed to not be pure
E_PURE : Node can be considered pure if explicitly specified by the node author
Methods
__init__(self, value)Attributes
E_IMPUREE_PUREvalue- __init__(
 - self: omni.graph.core._omni_graph_core.ePurityStatus,
 - value: int,
 
- property name#