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
template<typename T, int MinN>
struct TInterpSolutions
Remarks
Template structure used for representing an array of solutions with a minimum size
For example: // An array with at least 3 elements, varifyable at compile-time int32 Solve3(TInterpSolutions
double Solutions[8]; Solve3(Solutions); Solve4(Solutions);
Constructors
| Type | Name | Description | |
|---|---|---|---|
TInterpSolutions
(
T(&) In |
Construction from a c-style array with a size of at least MinN |
Operators
| Type | Name | Description | |
|---|---|---|---|
| Conversion to another array of size <= this | |||
| T & | operator[]
(
int Index |
Access the nth element of this array |