|
MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
|
| std::shared_ptr< Node > MayaFlux::Nodes::operator>> | ( | std::shared_ptr< Node > | lhs, |
| std::shared_ptr< Node > | rhs | ||
| ) |
Connects two nodes in series (pipeline operator)
| lhs | Source node |
| rhs | Target node |
Creates a connection where the output of the left-hand node becomes the input to the right-hand node. This allows for intuitive creation of processing chains:
The returned node is the right-hand node, allowing for further chaining of operations.
Definition at line 7 of file NodeOperators.cpp.