|
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 | ||
| ) |
Combines two nodes in parallel (addition operator)
| lhs | First node |
| rhs | Second node |
Creates a new node that processes both input nodes and sums their outputs. This allows for mixing multiple data sources or transformations:
The resulting node takes an input, passes it to both source nodes, and returns the sum of their outputs.
Definition at line 14 of file NodeOperators.cpp.