summaryrefslogtreecommitdiff
path: root/src/libs/din/din.h
blob: baa3ebba001a977399438cd7fea7e367101130e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _DIN_H
#define _DIN_H

typedef struct din_t din_t;
typedef struct v3f_t v3f_t;

din_t * din_new(int width, int height, int depth);
void din_free(din_t *din);
void din_randomize(din_t *din);
float din(din_t *din, v3f_t *coordinate);

#endif
© All Rights Reserved