views:

234

answers:

1

I need Improved Perlin Noise in my Lua code.

Are there any decent open-source Lua C modules available?

Or is there any nice C library that I can write a wrapper for (perhaps with other noise functions)?

I know that it is not hard to write one myself (reference code in Java is trivial to port), but I do not want to reinvent the wheel here.

+1  A: 

Ah, well, I'll have to roll my own then: http://github.com/agladysh/lua-noise/

Alexander Gladysh