commit | author | age
|
2bdec5
|
1 |
#ifndef _POLY_H |
M |
2 |
#define _POLY_H |
bcf455
|
3 |
#include"io.h" |
2bdec5
|
4 |
|
M |
5 |
#include"general.h" |
|
6 |
|
|
7 |
ts_poly *init_poly(ts_uint n, ts_vertex *grafted_vtx); |
|
8 |
|
624f81
|
9 |
ts_poly_list *init_poly_list(ts_uint n_poly, ts_uint n_mono, ts_vertex_list *vlist, ts_vesicle *vesicle); |
2bdec5
|
10 |
|
8db569
|
11 |
ts_bool poly_free(ts_poly *poly); |
M |
12 |
|
|
13 |
ts_bool poly_list_free(ts_poly_list *poly_list); |
|
14 |
|
48bb92
|
15 |
ts_bool poly_assign_spring_const(ts_vesicle *vesicle); |
M |
16 |
|
bcf455
|
17 |
ts_bool poly_assign_filament_xi(ts_vesicle *vesicle, ts_tape *tape); |
M |
18 |
|
a752b5
|
19 |
ts_poly *remove_poly_with_index(ts_poly_list *poly_list, ts_uint idx); |
SP |
20 |
ts_bool remove_random_polymeres(ts_poly_list *poly_list, ts_uint number); |
2bdec5
|
21 |
#endif |