mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 16:24:53 +02:00
7 lines
205 B
C
7 lines
205 B
C
#pragma once
|
|
|
|
// Implementation of "Improved Noise"
|
|
// http://mrl.nyu.edu/~perlin/noise/
|
|
// doubles are only used at the very start, not a big performance worry
|
|
float Noise(double x, double y, double z);
|