Results 8 comments of Travis Watkins

With type level integers it'd be quite easy to do an N dimensional implementation for perlin and simplex at least, probably all the cellular stuff too. They wouldn't be as...

I think I'd want to emulate the real KHR_debug as much as possible which means a C callback function. That way I can just proxy KHR_debug at runtime if it...

For basic bulk operations (`addAll`, `removeAll`, `retainAll`) we can use transients internally to do it efficiently but for more specialized operations you'd either have to take the hit of doing...

Sure you can avoid it if you expose the transient but the whole point of optimizing `Sequence` operations was to avoid doing that. A few months ago I also tried...

Why does this also change the test setup and all the tests?

Order of the Sun upgrades are at least handled now. Unicorn sacrifice, BLS, etc is going to be a much more complicated thing to handle.

You could probably just get away with adding an offset or just divide by 10000 or something. There isn't really anything special about dividing by your world size, you just...

http://kaba.hilvi.org/pastel-1.4.0/pastel/gfx/noise/simplex_noise_notes.htm should be useful for figuring out how to make 5D (or higher) simplex noise. It may not be all that useful though as I've heard simplex noise doesn't work...