GitXplorerGitXplorer
m

Utils

public
30 stars
10 forks
0 issues

Commits

List of commits on branch master.
Unverified
a89976c1b7a54394bcf8c6c6d0d7d0721ad78936

Fix not checking all normals of a polygon

mmatheus23 committed 6 years ago
Unverified
142e949ed093dbeaac5a35818a00f56c95c16352

Fix a bug in the polygon-vs-circle SAT code

mmatheus23 committed 6 years ago
Unverified
a409e388b8391cc0e39121a92a14af3de71024d5

Fixed lazy noise.

mmatheus23 committed 12 years ago
Unverified
6d28d0f352c5cf39832c5ccb9abb864e0903790a

Added "lazy" noise.

mmatheus23 committed 12 years ago
Unverified
bb31514cad058467a3260d987b2e84e5c37deaa2

Added 'longHashCode(long, long)' to return a hashCode, which isn't cast

mmatheus23 committed 12 years ago
Unverified
8d7fea1fa1d55cf857920aa0f177e50386aed992

Added 'static' to 'public void hashCode(long, long)' in 'Vec2l'.

mmatheus23 committed 12 years ago

README

The README file for this repository.

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();