MayaFlux 0.2.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 285 of file Logic.cpp.

286{
287 if (index >= m_input_buffer.size()) {
288 m_input_buffer.resize(index + 1, 0.0);
289 }
290 m_input_buffer[index] = input;
291}
std::vector< double > m_input_buffer
Definition Logic.hpp:584

References m_input_buffer.

Referenced by process_sample().

+ Here is the caller graph for this function: