Navigation
API > API/Runtime > API/Runtime/AnimGraphRuntime
| Name | TRBFInterpolator |
| Type | class |
| Header File | /Engine/Source/Runtime/AnimGraphRuntime/Public/RBF/RBFInterpolator.h |
| Include Path | #include "RBF/RBFInterpolator.h" |
Syntax
template<typename T>
class TRBFInterpolator : public FRBFInterpolatorBase
Inheritance Hierarchy
- FRBFInterpolatorBase → TRBFInterpolator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| RBF/RBFInterpolator.h | |||
TRBFInterpolator
(
const TRBFInterpolator< T >& |
RBF/RBFInterpolator.h | ||
TRBFInterpolator
(
TRBFInterpolator< T >&& |
RBF/RBFInterpolator.h | ||
TRBFInterpolator
(
const TArrayView< T >& InNodes, |
Construct an RBF interpolator, taking in a set of sparse nodes and a symmetric weighing function that computes the distance between two nodes, and, optionally, smooths the distance with a smoothing kernel. | RBF/RBFInterpolator.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| WeightFuncT | TFunction< float(const T &A, const T &B)> | RBF/RBFInterpolator.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Nodes | TArrayView< T > | RBF/RBFInterpolator.h | ||
| WeightFunc | WeightFuncT | RBF/RBFInterpolator.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Interpolate
(
TArray< float, InAllocator >& OutWeights, |
Given a value, compute the weight values to use to calculate each node's contribution to that value's location. | RBF/RBFInterpolator.h |
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool GetIdenticalNodePairs
(
const TArrayView< T >& InNodes, |
Returns a list of integer pairs indicating which distinct pair of nodes have the same weight as a pair of the same node. | RBF/RBFInterpolator.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TRBFInterpolator< T > & operator=
(
const TRBFInterpolator< T >& |
RBF/RBFInterpolator.h | ||
TRBFInterpolator< T > & operator=
(
TRBFInterpolator< T >&& |
RBF/RBFInterpolator.h |