polyadvent

A game engine from scratch in C
git clone git://jb55.com/polyadvent
Log | Files | Refs | README

perlin.h (159B)


      1 
      2 #ifndef POLYADVENT_PERLIN_H
      3 #define POLYADVENT_PERLIN_H
      4 
      5 float perlin2d(int seed, float x, float y, float freq, int depth);
      6 
      7 #endif /* POLYADVENT_PERLIN_H */