MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ BinaryOpContext()

MayaFlux::Nodes::BinaryOpContext::BinaryOpContext ( double  value,
double  lhs_value,
double  rhs_value 
)

Constructs a BinaryOpContext with the current operation state.

Parameters
valueThe combined output value
lhs_valueThe value from the left-hand side node
rhs_valueThe value from the right-hand side node

Creates a context object that provides a complete snapshot of the binary operation's current state, including both input values and the resulting output value after combination.

Definition at line 162 of file NodeStructure.cpp.

163 : NodeContext(value, typeid(BinaryOpContext).name())
166{
167}
double rhs_value
The value from the right-hand side node.
double lhs_value
The value from the left-hand side node.
NodeContext(double value, std::string type)
Protected constructor for NodeContext.
Definition Node.hpp:85
double value
Current sample value.
Definition Node.hpp:40