forked from whoozle/clunk
-
Notifications
You must be signed in to change notification settings - Fork 4
/
kemar.h
50 lines (43 loc) · 1.22 KB
/
kemar.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
#ifndef CLUNK_KEMAR_DATA_H__
#define CLUNK_KEMAR_DATA_H__
/*
This data is Copyright 1994 by the MIT Media Laboratory.
It is provided free with no restrictions on use,
provided the authors are cited when the data is used in any research or commercial application.
Bill Gardner [email protected] and Keith Martin [email protected]
*/
#ifdef __cplusplus
extern "C" {
#endif
#define ELEV_M40_N 56
extern const float elev_m40[][2][512];
#define ELEV_M30_N 60
extern const float elev_m30[][2][512];
#define ELEV_M20_N 72
extern const float elev_m20[][2][512];
#define ELEV_M10_N 72
extern const float elev_m10[][2][512];
#define ELEV_0_N 72
extern const float elev_0[][2][512];
#define ELEV_10_N 72
extern const float elev_10[][2][512];
#define ELEV_20_N 72
extern const float elev_20[][2][512];
#define ELEV_30_N 60
extern const float elev_30[][2][512];
#define ELEV_40_N 56
extern const float elev_40[][2][512];
#define ELEV_50_N 45
extern const float elev_50[][2][512];
#define ELEV_60_N 36
extern const float elev_60[][2][512];
#define ELEV_70_N 24
extern const float elev_70[][2][512];
#define ELEV_80_N 12
extern const float elev_80[][2][512];
#define ELEV_90_N 1
extern const float elev_90[][2][512];
#ifdef __cplusplus
}
#endif
#endif