Trisurf Monte Carlo simulator
Samo Penic
2014-04-30 3de2893d882d2c407375146376fbf9bb54f33e8b
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
2bdec5 19 #endif