![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <Distributions.h>
Inheritance diagram for FComposableDistribution:Protected Member Functions | |
| FComposableDistribution () | |
| ~FComposableDistribution () | |
| FComposableDistribution (const FComposableDistribution &Other) | |
| const FComposableDistribution & | operator= (const FComposableDistribution &Other) |
Protected Attributes | |
| FDistributionLookupTable | LookupTable |
Base class for composable distributions. Responsible for building the final distributions that can be sampled.
|
inlineprotected |
Constructor. Protected to prevent instantiating the base class.
|
inlineprotected |
Destructor.
|
inlineprotected |
Copy constructor. Protected to only allow type-safe copying.
|
static |
Constructs a type-safe floating point distribution.
| OutDistribution | - The distribution to build. |
| X | - The source distribution. |
|
static |
Constructs a type-safe vector distribution.
| OutDistribution | - The distribution to build. |
| XYZ | - The source distribution. |
|
static |
Constructs a type-safe 4-vector distribution.
| OutDistribution | - The distribution to build. |
| X | - The source distribution for the X component. |
| Y | - The source distribution for the Y component. |
| Z | - The source distribution for the Z component. |
| W | - The source distribution for the W component. |
|
static |
Constructs a type-safe 4-vector distribution.
| OutDistribution | - The distribution to build. |
| XY | - The source distribution for the X and Y components. |
| Z | - The source distribution for the Z component. |
| W | - The source distribution for the W component. |
|
static |
Constructs a type-safe 4-vector distribution.
| OutDistribution | - The distribution to build. |
| XYZ | - The source distribution for the X, Y, and Z components. |
| W | - The source distribution for the W component. |
|
inlineprotected |
Assignment operator. Protected to only allow type-safe copying.
|
static |
Quantizes a 4-component vector distribution.
| OutQuantizedSamples | - The quantized samples in the distribution. |
| OutScale | - Scale to apply to quantized samples. |
| OutBias | - Bias to apply to quantized samples. |
|
protected |
The lookup table.