re-add perlin noise again

This commit is contained in:
Sean Barrett
2023-01-29 10:46:04 -08:00
parent 3ecc60f25a
commit 5736b15f7e
2 changed files with 5 additions and 3 deletions

View File

@ -5,6 +5,7 @@ stb_truetype.h | graphics | parse, decode, and rasterize ch
stb_image_write.h | graphics | image writing to disk: PNG, TGA, BMP
stb_image_resize.h | graphics | resize images larger/smaller with good quality
stb_rect_pack.h | graphics | simple 2D rectangle packer with decent quality
stb_perlin.h | graphics | perlin's revised simplex noise w/ different seeds
stb_ds.h | utility | typesafe dynamic array and hash tables for C, will compile in C++
stb_sprintf.h | utility | fast sprintf, snprintf for C/C++
stb_textedit.h | user interface | guts of a text editor for games etc implementing them from scratch