Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
InterpCurve.h File Reference
#include "CoreTypes.h"
#include "Misc/AssertionMacros.h"
#include "Containers/Array.h"
#include "Math/UnrealMathUtility.h"
#include "Math/Color.h"
#include "Math/Vector2D.h"
#include "Math/Vector.h"
#include "Math/Quat.h"
#include "Math/TwoVectors.h"
#include "Math/InterpCurvePoint.h"
+ Include dependency graph for InterpCurve.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  FInterpCurve< T >
 

Macros

#define DEFINE_INTERPCURVE_WRAPPER_STRUCT(Name, ElementType)
 

Macro Definition Documentation

◆ DEFINE_INTERPCURVE_WRAPPER_STRUCT

#define DEFINE_INTERPCURVE_WRAPPER_STRUCT ( Name,
ElementType )
Value:
struct Name : FInterpCurve<ElementType> \
{ \
private: \
typedef FInterpCurve<ElementType> Super; \
\
public: \
Name() \
: Super() \
{ \
} \
Name(const Super& Other) \
: Super( Other ) \
{ \
} \
}; \
\
template <> \
struct TIsBitwiseConstructible<Name, FInterpCurve<ElementType>> \
{ \
enum { Value = true }; \
}; \
\
template <> \
struct TIsBitwiseConstructible<FInterpCurve<ElementType>, Name> \
{ \
enum { Value = true }; \
};

Definition at line 720 of file InterpCurve.h.