Skip to content

Commit

Permalink
Merge pull request supercollider#42 from sonoro1234/dwgchanges
Browse files Browse the repository at this point in the history
Dwg-ugens: don't post comments
  • Loading branch information
telephon committed Nov 28, 2015
2 parents dfb0f8f + 54a3dba commit dbb4511
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions source/DWGUGens/DWGBowed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ DWGSoundBoard :: DWGSoundBoard(Unit *unit){
void DWGSoundBoard_next(DWGSoundBoard *unit, int inNumSamples){
float *out = OUT(0);
float *in = IN(0);
unit->fdn.mix = ZIN0(3);
float signal;
for(int i=0; i < inNumSamples; i++){
signal = unit->fdn.go(in[i]);
Expand Down
8 changes: 4 additions & 4 deletions source/DWGUGens/dwglib/DWG.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1064,14 +1064,14 @@ class NJunction{
RTFree(obj->unit->mWorld, pObject);
}*/
NJunction(){
Print("NJunction const\n");
//Print("NJunction const\n");
for(int i=0;i<N;i++){
in[i]=0;
out[i]=0;
}
}
void Init(){
Print("NJunction init\n");
//Print("NJunction init\n");
for(int i=0;i<N;i++){
in[i]=0;
out[i]=0;
Expand Down Expand Up @@ -1108,14 +1108,14 @@ class NJunctionU{
RTFree(obj->unit->mWorld, pObject);
}*/
NJunctionU(){
Print("NJunctionU const\n");
//Print("NJunctionU const\n");
for(int i=0;i<N;i++){
in[i]=0;
out[i]=0;
}
}
void Init(){
Print("NJunctionU init\n");
//Print("NJunctionU init\n");
for(int i=0;i<N;i++){
in[i]=0;
out[i]=0;
Expand Down

0 comments on commit dbb4511

Please sign in to comment.