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

◆ set_threshold_remap_values()

void MayaFlux::Buffers::LogicProcessor::set_threshold_remap_values ( double  high_val,
double  low_val 
)
inline

Sets high and low values for THRESHOLD_REMAP mode.

Parameters
high_valValue to use when logic is true (1.0)
low_valValue to use when logic is false (0.0)

Definition at line 229 of file LogicProcessor.hpp.

230 {
231 m_high_value = high_val;
232 m_low_value = low_val;
233 }
double m_high_value
High value for THRESHOLD_REMAP.
double m_low_value
Low value for THRESHOLD_REMAP.