Utils

Noise classes, Matrix-to-array Mappers, and other useful java stuff wihtout dependencies to other libs.

Stars
29

MatheusDev's Utils

What is this?

This is a collection of useful classes in java, without dependencies to outer libs, except the standard java lib.

What does it have?

Currently, the following stuff is implemented:

What can I do with this?

Look at this: Demo GIF

All the Noise values generated for this image are basically gotten from this code:

MatrixNf values = new SimplexNoiseN(
        5,                                   // Octaves
        new Random(),                        // Random number generator RNG
        new FloatInterpolationCubicSpline(), // Value interpolator
        64, 256, 256                         // Dimensions (3D)
        ).get();