Skip to content

Commit

Permalink
example 8b: no need to execute the gui and synth separately
Browse files Browse the repository at this point in the history
  • Loading branch information
tedmoore committed Aug 15, 2022
1 parent 1706713 commit aca1875
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/8b-mlp-synth-control.scd
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,9 @@ StaticText(w,Rect(732,150,50,20)).string_("maxIter:");
TextField(w,Rect(730,170,50,20)).string_(1000.asString).action_{|in| mlp.maxIter = in.value.asInteger.postln;};
StaticText(w,Rect(732,190,50,20)).string_("validation:");
TextField(w,Rect(730,210,50,20)).string_(0.0.asString).action_{|in|mlp.validation = in.value.asFloat.postln;};
)

//2- the synth
(

b = {
arg val = #[0,0,0,0,0,0,0,0,0,0];
var osc1, osc2, feed1, feed2, base1=69, base2=69, base3 = 130;
Expand Down

0 comments on commit aca1875

Please sign in to comment.