blob: 082f9e37625add2863a5cd530ad8acdfa0806722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/*
* pmpd.h
*
*/
#define nb_max_link 100000
#define nb_max_mass 100000
#define max(a,b) ( ((a) > (b)) ? (a) : (b) )
#define min(a,b) ( ((a) < (b)) ? (a) : (b) )
static t_class *pmpd_class;
typedef struct _mass {
t_symbol *Id;
int mobile;
t_float invM;
t_float speedX;
t_float posX;
t_float forceX;
t_float D2;
t_float overdamp;
int num;
} foo;
typedef struct _link {
t_symbol *Id;
int lType;
struct _mass *mass1;
struct _mass *mass2;
t_int active;
t_float K;
t_float D;
t_float L;
t_float Pow;
t_float Lmin;
t_float Lmax;
t_float distance;
t_symbol *arrayK;
t_symbol *arrayD;
t_float K_L; // longeur du tabeau K
t_float D_L; // longeur du tabeau D
t_float forceX;
} foo1 ;
typedef struct _pmpd {
t_object x_obj;
struct _link link[nb_max_link];
struct _mass mass[nb_max_mass];
t_outlet *main_outlet;
t_outlet *info_outlet;
int nb_link;
int nb_mass;
t_float minX, maxX;
t_int grab; // si on grab une mass ou pas
t_int grab_nb; // la masse grabé
} t_pmpd;
|