Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/Channels
References
| Module | MovieScene |
| Header | /Engine/Source/Runtime/MovieScene/Public/Channels/MovieSceneInterpolation.h |
| Include | #include "Channels/MovieSceneInterpolation.h" |
Syntax
struct FLinearInterpolation
Remarks
Structure representing a linear interpolation of the form f(t) = a(t-o) + b.
Variables
| Type | Name | Description | |
|---|---|---|---|
| double | Coefficient | The coeffient 'a' in f(t) = a(t-o) + b | |
| double | Constant | The constant 'c' in f(t) = a(t-o) + b | |
| FFrameNumber | Origin | The origin 'o' in f(t) = a(t-o) + b |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FLinearInterpolation
(
FFrameNumber InOrigin, |
Functions
| Type | Name | Description | |
|---|---|---|---|
| double | Evaluate
(
FFrameTime InTime |
Evaluate the expression |