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

◆ get_last_output()

virtual double MayaFlux::Nodes::Node::get_last_output ( )
inlinevirtual

Retrieves the most recent output value produced by the node.

Returns
The last output sample value

This method provides access to the node's most recent output without triggering additional processing. It's useful for monitoring node state, debugging, and for implementing feedback loops where a node needs to access its previous output.

The returned value represents the last sample that was produced by the node's process_sample() method.

Definition at line 250 of file Node.hpp.

250{ return m_last_output; }
double m_last_output
The most recent sample value generated by this oscillator.
Definition Node.hpp:378