7 lines
179 B
C
7 lines
179 B
C
|
|
#pragma once
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
extern uint8_t perm[512];
|
||
|
|
float perlin1D_octave(uint16_t seed, float x, int octaves, float persistence);
|
||
|
|
float perlin1D(uint16_t seed, float x);
|