Package org.lwjgl.stb

Class STBPerlin

java.lang.Object
org.lwjgl.stb.STBPerlin

public class STBPerlin extends Object
  • Method Summary

    Modifier and Type
    Method
    Description
    static float
    stb_perlin_fbm_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)
    float stb_perlin_fbm_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)
    static float
    stb_perlin_noise3(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap)
    float stb_perlin_noise3(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap)
    static float
    stb_perlin_noise3_seed(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed)
    float stb_perlin_noise3_seed(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed)
    static float
    stb_perlin_noise3_wrap_nonpow2(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, byte seed)
    float stb_perlin_noise3_wrap_nonpow2(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, unsigned char seed)
    static float
    stb_perlin_ridge_noise3(float x, float y, float z, float lacunarity, float gain, float offset, int octaves)
    float stb_perlin_ridge_noise3(float x, float y, float z, float lacunarity, float gain, float offset, int octaves)
    static float
    stb_perlin_turbulence_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)
    float stb_perlin_turbulence_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • stb_perlin_noise3

      public static float stb_perlin_noise3(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap)
      float stb_perlin_noise3(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap)
    • stb_perlin_noise3_seed

      public static float stb_perlin_noise3_seed(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed)
      float stb_perlin_noise3_seed(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed)
    • stb_perlin_ridge_noise3

      public static float stb_perlin_ridge_noise3(float x, float y, float z, float lacunarity, float gain, float offset, int octaves)
      float stb_perlin_ridge_noise3(float x, float y, float z, float lacunarity, float gain, float offset, int octaves)
    • stb_perlin_fbm_noise3

      public static float stb_perlin_fbm_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)
      float stb_perlin_fbm_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)
    • stb_perlin_turbulence_noise3

      public static float stb_perlin_turbulence_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)
      float stb_perlin_turbulence_noise3(float x, float y, float z, float lacunarity, float gain, int octaves)
    • stb_perlin_noise3_wrap_nonpow2

      public static float stb_perlin_noise3_wrap_nonpow2(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, byte seed)
      float stb_perlin_noise3_wrap_nonpow2(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, unsigned char seed)