From b7ebf0bf8ada854bb04c403927328bf0ca273599 Mon Sep 17 00:00:00 2001 From: Cyrille Henry Date: Tue, 13 Jun 2006 17:47:10 +0000 Subject: spliting pmpd lib to single files svn path=/trunk/externals/pmpd/; revision=5221 --- src/pmpd~.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/pmpd~.c') diff --git a/src/pmpd~.c b/src/pmpd~.c index ed17b68..62013a6 100755 --- a/src/pmpd~.c +++ b/src/pmpd~.c @@ -15,6 +15,13 @@ #define max(a,b) ( ((a) > (b)) ? (a) : (b) ) #define min(a,b) ( ((a) < (b)) ? (a) : (b) ) + +#define nb_max_link 2000 +#define nb_max_mass 2000 +#define nb_max_out 200 +#define nb_max_in 200 +#define nb_max_outlet 20 +#define nb_max_inlet 20 // hard-coded on the methods definition static t_class *pmpd_tilde_class; @@ -31,7 +38,7 @@ typedef struct _link { struct _mass *mass1; struct _mass *mass2; t_float Ke, K1, D1, K2, D2; -} foo1; +} foo1 ; typedef struct _out { // TODO ajouter un type pour diferencier les outlets en forces et celles en position -- cgit v1.2.1