-
Notifications
You must be signed in to change notification settings - Fork 1
/
off.h
49 lines (49 loc) · 2.44 KB
/
off.h
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
#define T Off
typedef struct He He;
typedef struct T T;
int off_ini(const char *, T **);
int off_inif(FILE *, T **);
int off_fin(T *);
int off_nt(T *);
int off_nv(T *);
int off_ver(T *, real **);
int off_tri(T *, int **);
int off_xyz(T *, /**/ real *, real *, real *);
int off_fwrite(T *, const real *, const real *, const real *, FILE *);
int off_write0(T *, const real *, const real *, const real *,
/**/ const char *);
int off_tri_fwrite(T *, const int *tri, FILE *);
int off_tri_write(T *, const int *tri, /**/ const char *);
int off_he_fwrite(T *, He *, FILE *);
int off_he_write(T *, He *, /**/ const char *);
int off_xyz_tri_fwrite(int, const real * xyz, int, const int *tri, FILE *);
int off_he_xyz_fwrite(He *, const real *, const real *, const real *,
FILE *);
int off_he_xyz_write(He *, const real *, const real *, const real *,
const char *);
int off_lh_ver_fwrite(He *, const real *, const real *, const real *,
real lo, real hi, const real *, FILE *);
int off_lh_ver_alpha_fwrite(He *, const real *, const real *, const real *,
real lo, real hi, real alpha, const real *,
/**/ FILE *);
int boff_fwrite(He *, const real *, const real *, const real *, FILE *);
int boff_lh_tri_fwrite(He *, const real *, const real *, const real *,
real lo, real hi, const real *, FILE *);
int boff_tri_fwrite(He *, const real *, const real *, const real *,
const real *, FILE *);
int boff_lh_ver_fwrite(He *, const real *, const real *, const real *,
real lo, real hi, const real *, FILE *);
int boff_lh_ver_alpha_fwrite(He *, const real *, const real *,
const real *, real lo, real hi, real alpha,
const real *, FILE *);
int boff_ver_fwrite(He *, const real *, const real *, const real *,
const real *, FILE *);
int off_ver_fwrite(He *, const real *, const real *, const real *,
const real *, FILE *);
int boff_vect_fwrite(He *, const real *, const real *, const real *,
const real *, const real *, const real *, FILE *);
int boff_lh_point_fwrite(He *, const real *, const real *, const real *,
real lo, real hi, const real *, FILE *);
int boff_point_fwrite(He *, const real *, const real *, const real *,
const real *, FILE *);
#undef T