Enum RbfKernel
Namespace: ValveResourceFormat.ResourceTypes.ModelAnimation
Assembly: ValveResourceFormat.dll
The radial basis function the pose space constraints interpolate their samples with.
csharp
public enum RbfKernelFields
Multiquadric = 0
sqrt(1 + (r/falloff)²).
InverseMultiquadric = 1
1 / sqrt(1 + (r/falloff)²).
Gaussian = 2
exp(-(r/falloff)²).
Linear = 3
r.
Cubic = 4
r³.
Quintic = 5
r⁵.
ThinPlate = 6
r² log r.

