Skip to contents

Generate image: perlin noise.

Usage

gen_image_perlin_noise(width, height, offset_x, offset_y, scale)

Arguments

width

An integer.

height

An integer.

offset_x

An integer.

offset_y

An integer.

scale

A number.

Value

An image

Note

This function has been auto-generated from the following Raylib function definition:

Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale);

Examples

if (FALSE) {
gen_image_perlin_noise(800L, 450L, 0L, 0L, 1.0)
}