本文整理汇总了C++中Accum::phaseMax方法的典型用法代码示例。如果您正苦于以下问题:C++ Accum::phaseMax方法的具体用法?C++ Accum::phaseMax怎么用?C++ Accum::phaseMax使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Accum
的用法示例。
在下文中一共展示了Accum::phaseMax方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
MyApp(){
feedType=0;
tmr.phaseMax();
tmr.period(4);
mod.period(4);
src.freq(100);
comb.maxDelay(1./100);
}
示例2: short
MyApp(){
lpf.type(LOW_PASS); // Set filter to low-pass response
lpf.res(4); // Set resonance amount to emphasize filter
env.attack(0.01); // Set short (10 ms) attack
env.decay(0.4); // Set longer (400 ms) decay
tmr.freq(120./60.*4.); // Set timer frequency to 120 BPM
tmr.phaseMax(); // Ensures timer triggers on first sample
modCutoff.period(30); // Set period of cutoff modulation
modCutoff.phase(0.5); // Start half-way through cycle
freq.lag(0.1); // Lag time of portamento effect
step=0;
}
示例3:
MyApp(){
// Allocate 200 ms in the delay line
delay.maxDelay(0.2);
tmr.period(4);
tmr.phaseMax();
// Configure a short cosine grain
src.set(1000, 0.8, 0.04, 0.25);
// Set up low-pass filter
lpf.type(gam::LOW_PASS);
lpf.freq(2000);
}