Show
Ignore:
Timestamp:
10/23/07 08:07:12 (1 year ago)
Author:
shans
Message:

Moved "plugin" to "note" in line with original remix
Set up envelopes as notes
Started work on "continuous" (0, Forever) sounds and plugins
Added some repeat and shift utilities for notes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ocaml-remix/trunk/time.mli

    r488 r512  
    66            | Samples of int  
    77            | Beats of float  
    8             | Hertz of float;; 
     8            | Hertz of float 
     9            | Forever;; 
    910 
    1011type raw_extent = raw_time * raw_time;; 
     
    1920val extent_to_raw_samples : Remix.remix -> extent -> (int * int);; 
    2021 
     22val overlap : Remix.remix -> extent -> extent -> extent;; 
     23 
    2124val to_string : time -> string;;