mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
8 lines
288 B
R
8 lines
288 B
R
#include "mersenne.h"
|
|
|
|
mtwist_t *mtwist_new (int seed) = #0;
|
|
void mtwist_delete (mtwist_t *state) = #0;
|
|
void mtwist_seed (mtwist_t *state, int seed) = #0;
|
|
int mtwist_rand (mtwist_t *state) = #0;
|
|
float mtwist_rand_0_1 (mtwist_t *state) = #0;
|
|
float mtwist_rand_m1_1 (mtwist_t *state) = #0;
|