Uses of Interface
com.jhlabs.math.Function2D
-
Packages that use Function2D Package Description com.jhlabs.image com.jhlabs.math -
-
Uses of Function2D in com.jhlabs.image
Classes in com.jhlabs.image that implement Function2D Modifier and Type Class Description class
CellularFilter
A filter which produces an image with a cellular texture.class
CrystallizeFilter
A filter which applies a crystallizing effect to an image, by producing Voronoi cells filled with colours from the image.class
PointillizeFilter
Methods in com.jhlabs.image that return Function2D Modifier and Type Method Description Function2D
FBMFilter. getBasis()
Function2D
LightFilter. getBumpFunction()
Function2D
ShadeFilter. getBumpFunction()
Function2D
TextureFilter. getFunction()
Function2D
MapFilter. getXMapFunction()
Function2D
MapFilter. getYMapFunction()
Methods in com.jhlabs.image with parameters of type Function2D Modifier and Type Method Description void
FBMFilter. setBasis(Function2D basis)
void
LightFilter. setBumpFunction(Function2D bumpFunction)
void
ShadeFilter. setBumpFunction(Function2D bumpFunction)
void
TextureFilter. setFunction(Function2D function)
void
MapFilter. setXMapFunction(Function2D xMapFunction)
void
MapFilter. setYMapFunction(Function2D yMapFunction)
-
Uses of Function2D in com.jhlabs.math
Classes in com.jhlabs.math that implement Function2D Modifier and Type Class Description class
CellularFunction2D
class
CompoundFunction2D
class
FBM
class
FractalSumFunction
class
ImageFunction2D
class
MarbleFunction
class
Noise
Perlin Noise functionsclass
RidgedFBM
class
SCNoise
Sparse Convolution Noise.class
TurbulenceFunction
class
VLNoise
Fields in com.jhlabs.math declared as Function2D Modifier and Type Field Description protected Function2D
CompoundFunction2D. basis
protected Function2D
FBM. basis
Methods in com.jhlabs.math that return Function2D Modifier and Type Method Description Function2D
CompoundFunction2D. getBasis()
Function2D
FBM. getBasisType()
Methods in com.jhlabs.math with parameters of type Function2D Modifier and Type Method Description static float[]
Noise. findRange(Function2D f, float[] minmax)
Returns the minimum and maximum of a number of random values of the given function.void
CompoundFunction2D. setBasis(Function2D basis)
void
FBM. setBasis(Function2D basis)
Constructors in com.jhlabs.math with parameters of type Function2D Constructor Description CompoundFunction2D(Function2D basis)
FBM(float H, float lacunarity, float octaves, Function2D basis)
FractalSumFunction(Function2D basis)
MarbleFunction(Function2D basis)
TurbulenceFunction(Function2D basis, float octaves)
-