warp.pnoise#

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

  • Python

  • Differentiable

Periodic Perlin-style noise in 1D.

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

  • Python

  • Differentiable

Periodic Perlin-style noise in 2D.

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

  • Python

  • Differentiable

Periodic Perlin-style noise in 3D.

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

  • Python

  • Differentiable

Periodic Perlin-style noise in 4D.