File: pin~.h

package info (click to toggle)
pd-mjlib 0.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 1,296 kB
  • ctags: 369
  • sloc: ansic: 1,273; makefile: 333
file content (23 lines) | stat: -rw-r--r-- 697 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* declarations for the pin~ object */

typedef struct _pin_tilde
{
     t_object x_obj;     
	 float p_prob;		
	 float p_ticktime;	 
	 int p_outchannel;
	 t_clock* p_clock;
	 long p_numticks;
	 int p_normalized_prob;
	 float x_f;
} t_pin_tilde;

t_int *pin_tilde_perform(t_int *w);
static void pin_tilde_dsp(t_pin_tilde *x, t_signal **sp);
static void pin_tilde_free(t_pin_tilde *x);
static void *pin_tilde_new(t_floatarg prob , t_floatarg tick);
static void pin_tilde_float(t_pin_tilde* x, t_float n);
static void pin_tilde_ticktime( t_pin_tilde* x, t_float tick );
static void pin_tilde_prob( t_pin_tilde* x, t_float prob );
static void pin_tilde_tick(t_pin_tilde *x);