Skip to content

Instantly share code, notes, and snippets.

View chinoll's full-sized avatar
🏠
Working from home

Chino chinoll

🏠
Working from home
View GitHub Profile
@Flafla2
Flafla2 / Perlin_Tiled.cs
Last active February 24, 2026 06:02
A slightly modified implementation of Ken Perlin's improved noise that allows for tiling the noise arbitrarily.
public class Perlin {
public int repeat;
public Perlin(int repeat = -1) {
this.repeat = repeat;
}
public double OctavePerlin(double x, double y, double z, int octaves, double persistence) {
double total = 0;

+++ title = "日本麻将-入门向" description = "seventh的麻雀理论研究" date = "2014-05-19" tags = [ "入门" ] categories = [ "日本麻将" ]