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

◆ add_input()

void MayaFlux::Nodes::Generator::Logic::add_input ( double  input,
size_t  index 
)
private

Definition at line 281 of file Logic.cpp.

282{
283 if (index >= m_input_buffer.size()) {
284 m_input_buffer.resize(index + 1, 0.0);
285 }
286 m_input_buffer[index] = input;
287}
std::vector< double > m_input_buffer
Definition Logic.hpp:598

References m_input_buffer.

Referenced by process_sample().

+ Here is the caller graph for this function: