warp.pnoise#

warp.pnoise(state: uint32, x: float32, px: int32) float#
  • Kernel

  • Python

  • Differentiable

Periodic Perlin-style noise.

Sample 1D noise.

warp.pnoise(
state: uint32,
xy: vec2f,
px: int32,
py: int32,
) float
  • Kernel

  • Python

  • Differentiable

Periodic Perlin-style noise.

Sample 2D noise.

warp.pnoise(
state: uint32,
xyz: vec3f,
px: int32,
py: int32,
pz: int32,
) float
  • Kernel

  • Python

  • Differentiable

Periodic Perlin-style noise.

Sample 3D noise.

warp.pnoise(
state: uint32,
xyzt: vec4f,
px: int32,
py: int32,
pz: int32,
pt: int32,
) float
  • Kernel

  • Python

  • Differentiable

Periodic Perlin-style noise.

Sample 4D noise.