Skip to content

Instantly share code, notes, and snippets.

View sqrtM's full-sized avatar
sleepy

mason :) sqrtM

sleepy
  • ile-de-france
View GitHub Profile
@alksily
alksily / NoiseGenerator.java
Last active July 8, 2024 20:47
Perlin Noise (1D, 2D, 3D noise generator)
package main.ru.aengine.noise;
import java.util.Random;
public class NoiseGenerator {
private double seed;
private long default_size;
private int[] p;
private int[] permutation;