Julian Rohrhuber | 6 Dec 2004 23:17
Picon
Favicon

[ ¿commit? ] Dseq arg changes

if noone objects I will commit the following changes this week, accompanied
by help pages and a note to sc-users.

Index: Demand.sc
===================================================================
RCS file: 
/cvsroot/supercollider/SuperCollider3/build/SCClassLibrary/Common/Audio/Demand.sc,v
retrieving revision 1.1
diff -p -b -B -r1.1 Demand.sc
*** Demand.sc   10 Apr 2004 19:49:49 -0000      1.1
--- Demand.sc   6 Dec 2004 22:17:07 -0000
*************** Demand : MultiOutUGen {
*** 13,26 ****
   }

   Dseries : UGen {
!       *new { arg start = 0, step = 1, length=100;
!               ^this.multiNew('demand', start, step, length)
         }
   }

   Dgeom : UGen {
         *new { arg start = 1, grow = 2, length=100;
!               ^this.multiNew('demand', start, grow, length)
         }
   }

--- 13,26 ----
   }

   Dseries : UGen {
!       *new { arg start = 1, step = 1, length = 100;
!               ^this.multiNew('demand', length, start, step)
         }
   }

   Dgeom : UGen {
         *new { arg start = 1, grow = 2, length=100;
!               ^this.multiNew('demand', length, start, grow)
         }
   }

*************** Dswitch1 : UGen {
*** 45,51 ****

   Dwhite : UGen {
         *new { arg lo, hi, length=inf;
!               ^this.multiNew('demand', lo, hi, length)
         }
   }

--- 45,51 ----

   Dwhite : UGen {
         *new { arg lo, hi, length=inf;
!               ^this.multiNew('demand', length, lo, hi)
         }
   }

*************** Diwhite : Dwhite {}
*** 53,59 ****

   Dbrown : UGen {
         *new { arg lo, hi, step, length=inf;
!               ^this.multiNew('demand', lo, hi, step, length)
         }
   }

--- 53,59 ----

   Dbrown : UGen {
         *new { arg lo, hi, step, length=inf;
!               ^this.multiNew('demand', length, lo, hi, step)
         }
   }

--

-- 

.

Gmane