Browse Source

changed stuff modulay

pull/2/merge
nino de wit 9 years ago
parent
commit
d1b3e7a8cb
3 changed files with 128 additions and 128 deletions
  1. +40
    -40
      plugins/modulay/gen_exported.cpp
  2. +44
    -44
      plugins/modulay/modulay.gendsp
  3. +44
    -44
      plugins/modulay/modulay.maxpat

+ 40
- 40
plugins/modulay/gen_exported.cpp View File

@@ -88,48 +88,48 @@ typedef struct State {
return __exception;
};
double mul_1174 = (m_mix_12 * 0.01);
double mstosamps_1200 = (m_time_7 * (samplerate * 0.001));
double expr_1204 = safediv(((m_cutoff_9 * 2) * 3.1415926535898), 48000);
double sin_1181 = sin(expr_1204);
double clamp_1182 = ((sin_1181 <= 1e-05) ? 1e-05 : ((sin_1181 >= 0.99999) ? 0.99999 : sin_1181));
double mul_1176 = (m_bleed_8 * 0.01);
double mul_1175 = (m_feedforward_5 * 0.01);
double mul_1178 = (m_repeats_10 * 0.01);
double mul_1177 = (m_feedback_6 * 0.01);
double mul_1695 = (m_mix_12 * 0.01);
double mstosamps_1721 = (m_time_7 * (samplerate * 0.001));
double expr_1724 = safediv(((m_cutoff_9 * 2) * 3.1415926535898), 48000);
double sin_1702 = sin(expr_1724);
double clamp_1703 = ((sin_1702 <= 1e-05) ? 1e-05 : ((sin_1702 >= 0.99999) ? 0.99999 : sin_1702));
double mul_1697 = (m_bleed_8 * 0.01);
double mul_1696 = (m_feedforward_5 * 0.01);
double mul_1699 = (m_repeats_10 * 0.01);
double mul_1698 = (m_feedback_6 * 0.01);
// the main sample loop;
while ((__n--)) {
const double in1 = (*(__in1++));
double mix_1214 = (m_history_2 + (0.01 * (mstosamps_1200 - m_history_2)));
double mix_1201 = mix_1214;
double tap_1199 = m_delay_4.read_linear(mix_1201);
double mix_1215 = (m_y_1 + (clamp_1182 * (tap_1199 - m_y_1)));
double mix_1180 = mix_1215;
double mul_1196 = (mix_1180 * mul_1178);
double clamp_1205 = ((mul_1196 <= -1) ? -1 : ((mul_1196 >= 1) ? 1 : mul_1196));
double dcblock_1203 = m_dcblock_15(mix_1180);
double mix_1735 = (m_history_2 + (0.01 * (mstosamps_1721 - m_history_2)));
double mix_1722 = mix_1735;
double tap_1720 = m_delay_4.read_linear(mix_1722);
double mix_1736 = (m_y_1 + (clamp_1703 * (tap_1720 - m_y_1)));
double mix_1701 = mix_1736;
double mul_1717 = (mix_1701 * mul_1699);
double dcblock_1726 = m_dcblock_15(mul_1717);
double clamp_1725 = ((dcblock_1726 <= -1) ? -1 : ((dcblock_1726 >= 1) ? 1 : dcblock_1726));
m_cycle_16.freq(m_rate_13);
double cycle_1185 = m_cycle_16(__sinedata);
double cycleindex_1186 = m_cycle_16.phase();
double add_1184 = (cycle_1185 + 1);
double mul_1183 = (add_1184 * 0.5);
double mul_1188 = (m_depth_11 * mul_1183);
double add_1187 = (m_delay_14 + mul_1188);
double mstosamps_1179 = (add_1187 * (samplerate * 0.001));
double tap_1193 = m_delay_3.read_linear(mstosamps_1179);
double mul_1191 = (tap_1193 * mul_1175);
double mul_1189 = (tap_1193 * mul_1177);
double add_1195 = (dcblock_1203 + mul_1189);
double mul_1190 = (add_1195 * mul_1176);
double add_1194 = (mul_1190 + mul_1191);
double mul_1197 = (add_1194 * mul_1174);
double out1 = (mul_1197 + in1);
double history_1202_next_1206 = mix_1201;
double y0_next_1207 = mix_1180;
m_delay_4.write((clamp_1205 + in1));
m_delay_3.write(add_1195);
m_history_2 = history_1202_next_1206;
m_y_1 = y0_next_1207;
double cycle_1706 = m_cycle_16(__sinedata);
double cycleindex_1707 = m_cycle_16.phase();
double add_1705 = (cycle_1706 + 1);
double mul_1704 = (add_1705 * 0.5);
double mul_1709 = (m_depth_11 * mul_1704);
double add_1708 = (m_delay_14 + mul_1709);
double mstosamps_1700 = (add_1708 * (samplerate * 0.001));
double tap_1714 = m_delay_3.read_linear(mstosamps_1700);
double mul_1712 = (tap_1714 * mul_1696);
double mul_1710 = (tap_1714 * mul_1698);
double add_1716 = (mix_1701 + mul_1710);
double mul_1711 = (add_1716 * mul_1697);
double add_1715 = (mul_1711 + mul_1712);
double mul_1718 = (add_1715 * mul_1695);
double out1 = (mul_1718 + in1);
double history_1723_next_1727 = mix_1722;
double y0_next_1728 = mix_1701;
m_delay_4.write((clamp_1725 + in1));
m_delay_3.write(add_1716);
m_history_2 = history_1723_next_1727;
m_y_1 = y0_next_1728;
m_delay_3.step();
m_delay_4.step();
// assign results to output buffer;
@@ -146,7 +146,7 @@ typedef struct State {
m_feedback_6 = (_value < -70 ? -70 : (_value > 70 ? 70 : _value));
};
inline void set_time(double _value) {
m_time_7 = (_value < 10 ? 10 : (_value > 1000 ? 1000 : _value));
m_time_7 = (_value < 20 ? 20 : (_value > 1000 ? 1000 : _value));
};
inline void set_bleed(double _value) {
m_bleed_8 = (_value < 0 ? 0 : (_value > 70 ? 70 : _value));
@@ -297,7 +297,7 @@ void * create(double sr, long vs) {
pi->inputmin = 0;
pi->inputmax = 1;
pi->hasminmax = true;
pi->outputmin = 10;
pi->outputmin = 20;
pi->outputmax = 1000;
pi->exp = 0;
pi->units = ""; // no units defined


+ 44
- 44
plugins/modulay/modulay.gendsp View File

@@ -32,12 +32,12 @@
"box" : {
"fontname" : "Arial",
"fontsize" : 12.0,
"id" : "obj-47",
"id" : "obj-50",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.5, 307.0, 51.0, 20.0 ],
"patching_rect" : [ 89.0, 307.0, 51.0, 20.0 ],
"text" : "dcblock"
}

@@ -51,7 +51,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 89.0, 307.0, 53.0, 20.0 ],
"patching_rect" : [ 89.0, 332.0, 53.0, 20.0 ],
"text" : "clip -1 1"
}

@@ -93,7 +93,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 108.5, 742.0, 42.0, 20.0 ],
"patching_rect" : [ 108.5, 767.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -107,7 +107,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 89.5, 692.0, 42.0, 20.0 ],
"patching_rect" : [ 89.5, 717.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -121,7 +121,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 43.5, 667.0, 42.0, 20.0 ],
"patching_rect" : [ 43.5, 692.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -135,7 +135,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 168.5, 577.0, 42.0, 20.0 ],
"patching_rect" : [ 168.5, 602.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -163,7 +163,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 96.5, 552.0, 72.0, 20.0 ],
"patching_rect" : [ 96.5, 577.0, 72.0, 20.0 ],
"text" : "mstosamps"
}

@@ -261,7 +261,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 147.5, 477.0, 35.0, 20.0 ],
"patching_rect" : [ 147.5, 502.0, 35.0, 20.0 ],
"text" : "* 0.5"
}

@@ -275,7 +275,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 147.5, 452.0, 28.0, 20.0 ],
"patching_rect" : [ 147.5, 477.0, 28.0, 20.0 ],
"text" : "+ 1"
}

@@ -289,7 +289,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 147.5, 402.0, 188.0, 20.0 ],
"patching_rect" : [ 147.5, 427.0, 188.0, 20.0 ],
"text" : "param rate 2 @min 0.1 @max 10"
}

@@ -303,7 +303,7 @@
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "" ],
"patching_rect" : [ 147.5, 427.0, 38.0, 20.0 ],
"patching_rect" : [ 147.5, 452.0, 38.0, 20.0 ],
"text" : "cycle"
}

@@ -317,7 +317,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 96.5, 527.0, 57.0, 20.0 ],
"patching_rect" : [ 96.5, 552.0, 57.0, 20.0 ],
"text" : "+"
}

@@ -331,7 +331,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 134.5, 502.0, 32.5, 20.0 ],
"patching_rect" : [ 134.5, 527.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -345,7 +345,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 134.5, 377.0, 181.0, 20.0 ],
"patching_rect" : [ 134.5, 402.0, 181.0, 20.0 ],
"text" : "param depth 1 @min 0 @max 5"
}

@@ -359,7 +359,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 155.0, 607.0, 32.5, 20.0 ],
"patching_rect" : [ 155.0, 632.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -373,7 +373,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.0, 692.0, 32.5, 20.0 ],
"patching_rect" : [ 30.0, 717.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -387,7 +387,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 76.0, 717.0, 32.5, 20.0 ],
"patching_rect" : [ 76.0, 742.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -401,7 +401,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 77.0, 577.0, 39.0, 20.0 ],
"patching_rect" : [ 77.0, 602.0, 39.0, 20.0 ],
"text" : "delay"
}

@@ -415,7 +415,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.0, 742.0, 65.0, 20.0 ],
"patching_rect" : [ 30.0, 767.0, 65.0, 20.0 ],
"text" : "+"
}

@@ -429,7 +429,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 31.0, 352.0, 32.5, 20.0 ],
"patching_rect" : [ 31.0, 377.0, 32.5, 20.0 ],
"text" : "+"
}

@@ -443,7 +443,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 168.5, 552.0, 217.0, 20.0 ],
"patching_rect" : [ 168.5, 577.0, 217.0, 20.0 ],
"text" : "param feedback 0 @min -70 @max 70"
}

@@ -457,7 +457,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 43.5, 642.0, 187.0, 20.0 ],
"patching_rect" : [ 43.5, 667.0, 187.0, 20.0 ],
"text" : "param bleed 0 @min 0 @max 70"
}

@@ -471,7 +471,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 97.0, 352.0, 186.0, 20.0 ],
"patching_rect" : [ 97.0, 377.0, 186.0, 20.0 ],
"text" : "param delay 0 @min 0 @max 30"
}

@@ -485,7 +485,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 89.5, 667.0, 248.0, 20.0 ],
"patching_rect" : [ 89.5, 692.0, 248.0, 20.0 ],
"text" : "param feedforward 100 @min 70 @max 100"
}

@@ -527,7 +527,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 108.5, 717.0, 196.0, 20.0 ],
"patching_rect" : [ 108.5, 742.0, 196.0, 20.0 ],
"text" : "param mix 100 @min 0 @max 100"
}

@@ -542,7 +542,7 @@
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 98.5, 2.0, 214.0, 20.0 ],
"text" : "param time 500 @min 10 @max 1000"
"text" : "param time 500 @min 20 @max 1000"
}

}
@@ -555,7 +555,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.0, 771.0, 32.5, 20.0 ],
"patching_rect" : [ 30.0, 796.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -610,7 +610,7 @@
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 16.0, 801.0, 37.0, 20.0 ],
"patching_rect" : [ 16.0, 826.0, 37.0, 20.0 ],
"text" : "out 1"
}

@@ -658,7 +658,7 @@
"destination" : [ "obj-34", 1 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 118.0, 766.0, 53.0, 766.0 ],
"midpoints" : [ 118.0, 791.0, 53.0, 791.0 ],
"source" : [ "obj-12", 0 ]
}

@@ -694,19 +694,19 @@
}
, {
"patchline" : {
"destination" : [ "obj-43", 0 ],
"destination" : [ "obj-27", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 40.0, 276.5, 98.5, 276.5 ],
"source" : [ "obj-15", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-47", 0 ],
"destination" : [ "obj-43", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 40.0, 276.5, 98.5, 276.5 ],
"source" : [ "obj-15", 0 ]
}

@@ -797,7 +797,7 @@
"destination" : [ "obj-33", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 86.5, 601.5, 164.5, 601.5 ],
"midpoints" : [ 86.5, 626.5, 164.5, 626.5 ],
"source" : [ "obj-29", 0 ]
}

@@ -843,7 +843,7 @@
"destination" : [ "obj-27", 1 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 164.5, 635.0, 393.0, 635.0, 393.0, 384.0, 393.0, 384.0, 393.0, 343.0, 54.0, 343.0 ],
"midpoints" : [ 164.5, 660.0, 393.0, 660.0, 393.0, 409.0, 393.0, 409.0, 393.0, 368.0, 54.0, 368.0 ],
"source" : [ "obj-33", 0 ]
}

@@ -853,7 +853,7 @@
"destination" : [ "obj-4", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 39.5, 795.5, 25.5, 795.5 ],
"midpoints" : [ 39.5, 820.5, 25.5, 820.5 ],
"source" : [ "obj-34", 0 ]
}

@@ -915,7 +915,7 @@
}
, {
"patchline" : {
"destination" : [ "obj-46", 0 ],
"destination" : [ "obj-50", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-43", 0 ]
@@ -936,35 +936,35 @@
"destination" : [ "obj-21", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 98.5, 335.0, 392.25, 335.0, 392.25, 93.0, 51.5, 93.0 ],
"midpoints" : [ 98.5, 360.0, 392.25, 360.0, 392.25, 93.0, 51.5, 93.0 ],
"source" : [ "obj-46", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-27", 0 ],
"destination" : [ "obj-52", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-47", 0 ]
"source" : [ "obj-49", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-52", 0 ],
"destination" : [ "obj-9", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-49", 0 ]
"source" : [ "obj-5", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-9", 0 ],
"destination" : [ "obj-46", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-5", 0 ]
"source" : [ "obj-50", 0 ]
}

}


+ 44
- 44
plugins/modulay/modulay.maxpat View File

@@ -448,12 +448,12 @@
"box" : {
"fontname" : "Arial",
"fontsize" : 12.0,
"id" : "obj-47",
"id" : "obj-50",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.5, 307.0, 51.0, 20.0 ],
"patching_rect" : [ 89.0, 307.0, 51.0, 20.0 ],
"text" : "dcblock"
}

@@ -467,7 +467,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 89.0, 307.0, 53.0, 20.0 ],
"patching_rect" : [ 89.0, 332.0, 53.0, 20.0 ],
"text" : "clip -1 1"
}

@@ -509,7 +509,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 108.5, 742.0, 42.0, 20.0 ],
"patching_rect" : [ 108.5, 767.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -523,7 +523,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 89.5, 692.0, 42.0, 20.0 ],
"patching_rect" : [ 89.5, 717.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -537,7 +537,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 43.5, 667.0, 42.0, 20.0 ],
"patching_rect" : [ 43.5, 692.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -551,7 +551,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 168.5, 577.0, 42.0, 20.0 ],
"patching_rect" : [ 168.5, 602.0, 42.0, 20.0 ],
"text" : "* 0.01"
}

@@ -579,7 +579,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 96.5, 552.0, 72.0, 20.0 ],
"patching_rect" : [ 96.5, 577.0, 72.0, 20.0 ],
"text" : "mstosamps"
}

@@ -677,7 +677,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 147.5, 477.0, 35.0, 20.0 ],
"patching_rect" : [ 147.5, 502.0, 35.0, 20.0 ],
"text" : "* 0.5"
}

@@ -691,7 +691,7 @@
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 147.5, 452.0, 28.0, 20.0 ],
"patching_rect" : [ 147.5, 477.0, 28.0, 20.0 ],
"text" : "+ 1"
}

@@ -705,7 +705,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 147.5, 402.0, 188.0, 20.0 ],
"patching_rect" : [ 147.5, 427.0, 188.0, 20.0 ],
"text" : "param rate 2 @min 0.1 @max 10"
}

@@ -719,7 +719,7 @@
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "" ],
"patching_rect" : [ 147.5, 427.0, 38.0, 20.0 ],
"patching_rect" : [ 147.5, 452.0, 38.0, 20.0 ],
"text" : "cycle"
}

@@ -733,7 +733,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 96.5, 527.0, 57.0, 20.0 ],
"patching_rect" : [ 96.5, 552.0, 57.0, 20.0 ],
"text" : "+"
}

@@ -747,7 +747,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 134.5, 502.0, 32.5, 20.0 ],
"patching_rect" : [ 134.5, 527.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -761,7 +761,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 134.5, 377.0, 181.0, 20.0 ],
"patching_rect" : [ 134.5, 402.0, 181.0, 20.0 ],
"text" : "param depth 1 @min 0 @max 5"
}

@@ -775,7 +775,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 155.0, 607.0, 32.5, 20.0 ],
"patching_rect" : [ 155.0, 632.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -789,7 +789,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.0, 692.0, 32.5, 20.0 ],
"patching_rect" : [ 30.0, 717.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -803,7 +803,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 76.0, 717.0, 32.5, 20.0 ],
"patching_rect" : [ 76.0, 742.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -817,7 +817,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 77.0, 577.0, 39.0, 20.0 ],
"patching_rect" : [ 77.0, 602.0, 39.0, 20.0 ],
"text" : "delay"
}

@@ -831,7 +831,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.0, 742.0, 65.0, 20.0 ],
"patching_rect" : [ 30.0, 767.0, 65.0, 20.0 ],
"text" : "+"
}

@@ -845,7 +845,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 31.0, 352.0, 32.5, 20.0 ],
"patching_rect" : [ 31.0, 377.0, 32.5, 20.0 ],
"text" : "+"
}

@@ -859,7 +859,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 168.5, 552.0, 217.0, 20.0 ],
"patching_rect" : [ 168.5, 577.0, 217.0, 20.0 ],
"text" : "param feedback 0 @min -70 @max 70"
}

@@ -873,7 +873,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 43.5, 642.0, 187.0, 20.0 ],
"patching_rect" : [ 43.5, 667.0, 187.0, 20.0 ],
"text" : "param bleed 0 @min 0 @max 70"
}

@@ -887,7 +887,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 97.0, 352.0, 186.0, 20.0 ],
"patching_rect" : [ 97.0, 377.0, 186.0, 20.0 ],
"text" : "param delay 0 @min 0 @max 30"
}

@@ -901,7 +901,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 89.5, 667.0, 248.0, 20.0 ],
"patching_rect" : [ 89.5, 692.0, 248.0, 20.0 ],
"text" : "param feedforward 100 @min 70 @max 100"
}

@@ -943,7 +943,7 @@
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 108.5, 717.0, 196.0, 20.0 ],
"patching_rect" : [ 108.5, 742.0, 196.0, 20.0 ],
"text" : "param mix 100 @min 0 @max 100"
}

@@ -958,7 +958,7 @@
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 98.5, 2.0, 214.0, 20.0 ],
"text" : "param time 500 @min 10 @max 1000"
"text" : "param time 500 @min 20 @max 1000"
}

}
@@ -971,7 +971,7 @@
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 30.0, 771.0, 32.5, 20.0 ],
"patching_rect" : [ 30.0, 796.0, 32.5, 20.0 ],
"text" : "*"
}

@@ -1026,7 +1026,7 @@
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 16.0, 801.0, 37.0, 20.0 ],
"patching_rect" : [ 16.0, 826.0, 37.0, 20.0 ],
"text" : "out 1"
}

@@ -1074,7 +1074,7 @@
"destination" : [ "obj-34", 1 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 118.0, 766.0, 53.0, 766.0 ],
"midpoints" : [ 118.0, 791.0, 53.0, 791.0 ],
"source" : [ "obj-12", 0 ]
}

@@ -1110,19 +1110,19 @@
}
, {
"patchline" : {
"destination" : [ "obj-43", 0 ],
"destination" : [ "obj-27", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 40.0, 276.5, 98.5, 276.5 ],
"source" : [ "obj-15", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-47", 0 ],
"destination" : [ "obj-43", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 40.0, 276.5, 98.5, 276.5 ],
"source" : [ "obj-15", 0 ]
}

@@ -1213,7 +1213,7 @@
"destination" : [ "obj-33", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 86.5, 601.5, 164.5, 601.5 ],
"midpoints" : [ 86.5, 626.5, 164.5, 626.5 ],
"source" : [ "obj-29", 0 ]
}

@@ -1259,7 +1259,7 @@
"destination" : [ "obj-27", 1 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 164.5, 635.0, 393.0, 635.0, 393.0, 384.0, 393.0, 384.0, 393.0, 343.0, 54.0, 343.0 ],
"midpoints" : [ 164.5, 660.0, 393.0, 660.0, 393.0, 409.0, 393.0, 409.0, 393.0, 368.0, 54.0, 368.0 ],
"source" : [ "obj-33", 0 ]
}

@@ -1269,7 +1269,7 @@
"destination" : [ "obj-4", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 39.5, 795.5, 25.5, 795.5 ],
"midpoints" : [ 39.5, 820.5, 25.5, 820.5 ],
"source" : [ "obj-34", 0 ]
}

@@ -1331,7 +1331,7 @@
}
, {
"patchline" : {
"destination" : [ "obj-46", 0 ],
"destination" : [ "obj-50", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-43", 0 ]
@@ -1352,35 +1352,35 @@
"destination" : [ "obj-21", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 98.5, 335.0, 392.25, 335.0, 392.25, 93.0, 51.5, 93.0 ],
"midpoints" : [ 98.5, 360.0, 392.25, 360.0, 392.25, 93.0, 51.5, 93.0 ],
"source" : [ "obj-46", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-27", 0 ],
"destination" : [ "obj-52", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-47", 0 ]
"source" : [ "obj-49", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-52", 0 ],
"destination" : [ "obj-9", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-49", 0 ]
"source" : [ "obj-5", 0 ]
}

}
, {
"patchline" : {
"destination" : [ "obj-9", 0 ],
"destination" : [ "obj-46", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-5", 0 ]
"source" : [ "obj-50", 0 ]
}

}


Loading…
Cancel
Save