aboutsummaryrefslogtreecommitdiff
path: root/SynapseA~.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-04-07 14:32:29 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-04-07 14:32:29 +0000
commit1baf1d957e195290cfd59089767ca63a547a9917 (patch)
tree38a48f9bffeb97d2f69934447be073a1728bf779 /SynapseA~.h
This commit was generated by cvs2svn to compensate for changes in r1560,svn2git-root
which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/mjlib/; revision=1561
Diffstat (limited to 'SynapseA~.h')
-rw-r--r--SynapseA~.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/SynapseA~.h b/SynapseA~.h
new file mode 100644
index 0000000..265dd53
--- /dev/null
+++ b/SynapseA~.h
@@ -0,0 +1,21 @@
+/* declarations for the pin~ object */
+
+typedef struct _synapseA_tilde
+{
+ t_object x_obj;
+ t_float x_f;
+ t_float x_threshold;
+ t_outlet *x_onbang;
+ t_outlet *x_offbang;
+ t_float n_inv;
+ t_float x_state;
+} t_synapseA_tilde;
+
+t_int *synapseA_tilde_perform(t_int *w);
+static void synapseA_tilde_dsp(t_synapseA_tilde *x, t_signal **sp);
+static void synapseA_tilde_free(t_synapseA_tilde *x);
+static void *synapseA_tilde_new(t_floatarg prob , t_floatarg tick);
+static void synapseA_tilde_float(t_synapseA_tilde* x, t_float n);
+static void synapseA_tilde_threshold(t_synapseA_tilde *x, t_float f );
+
+