![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <MovieSceneInterpolation.h>
Public Member Functions | |
| template<int N> requires (N >= MinN) | |
| TInterpSolutions (T(&In)[N]) | |
| template<int OtherN> requires (OtherN <= MinN) | |
| operator TInterpSolutions< T, OtherN > () const | |
| T & | operator[] (int Index) const |
Friends | |
| template<typename U , int OtherN> | |
| struct | TInterpSolutions |
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, 3> Solutions) { Solutions[0] = 0.0; Solutions[1] = 1.0; Solutions[2] = 2.0; return 3; } int32 Solve4(TInterpSolutions<double, 4> Solutions);
double Solutions[8]; Solve3(Solutions); Solve4(Solutions);
|
inline |
Construction from a c-style array with a size of at least MinN
|
inline |
Conversion to another array of size <= this
|
inline |
Access the nth element of this array
|
friend |