Uses of Interface
dev.wyck.worldgen.function.simple.TwoArgumentSimpleFunction
Packages that use TwoArgumentSimpleFunction
-
Uses of TwoArgumentSimpleFunction in dev.wyck.worldgen.function
Methods in dev.wyck.worldgen.function that return TwoArgumentSimpleFunctionModifier and TypeMethodDescriptiondefault TwoArgumentSimpleFunctionDensityFunction.add(DensityFunction other) Adds this density function to another density function.default TwoArgumentSimpleFunctionDensityFunction.max(DensityFunction other) Returns the maximum of this density function and another density function.default TwoArgumentSimpleFunctionDensityFunction.min(DensityFunction other) Returns the minimum of this density function and another density function.default TwoArgumentSimpleFunctionDensityFunction.mul(DensityFunction other) Multiplies this density function by another density function. -
Uses of TwoArgumentSimpleFunction in dev.wyck.worldgen.function.simple
Subinterfaces with type arguments of type TwoArgumentSimpleFunction in dev.wyck.worldgen.function.simpleMethods in dev.wyck.worldgen.function.simple that return TwoArgumentSimpleFunctionModifier and TypeMethodDescriptionstatic TwoArgumentSimpleFunctionTwoArgumentSimpleFunction.add(DensityFunction first, DensityFunction second) Adds two density functions together.static TwoArgumentSimpleFunctionTwoArgumentSimpleFunction.max(DensityFunction first, DensityFunction second) Returns the maximum of two density functions.static TwoArgumentSimpleFunctionTwoArgumentSimpleFunction.min(DensityFunction first, DensityFunction second) Returns the minimum of two density functions.static TwoArgumentSimpleFunctionTwoArgumentSimpleFunction.mul(DensityFunction first, DensityFunction second) Multiplies two density functions together.static TwoArgumentSimpleFunctionTwoArgumentSimpleFunction.of(@Nullable ResourceKey resourceKey, TwoArgumentSimpleFunction.Operation operation, DensityFunction first, DensityFunction second) Performs anTwoArgumentSimpleFunction.Operationon two density functions.static TwoArgumentSimpleFunctionTwoArgumentSimpleFunction.of(TwoArgumentSimpleFunction.Operation operation, DensityFunction first, DensityFunction second) Performs anTwoArgumentSimpleFunction.Operationon two density functions.