GenImagePerlinNoise method
Implementation
ImageD GenImagePerlinNoise(
num width,
num height,
num offsetX,
num offsetY,
num scale,
) => run(
() => 'GenImagePerlinNoise($width, $height, $offsetX, $offsetY, $scale)',
() => rl.Temp.Image$.RefCapture(
'GenImagePerlinNoise_${width}_$height',
rl.Core.GenImagePerlinNoise(
width.toInt(),
height.toInt(),
offsetX.toInt(),
offsetY.toInt(),
scale.toDouble(),
),
),
);