Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Math > API/Runtime/Core/Math/TTransform
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Math/TransformNonVectorized.h |
| Include | #include "Math/TransformNonVectorized.h" |
static void BlendFromIdentityAndAccumulate
&40;
TTransform< T > & FinalAtom,
const TTransform< T > & SourceAtom,
float BlendWeight
&41;
Remarks
Blends the Identity transform with a weighted source transform and accumulates that into a destination transform
DeltaAtom = Blend(Identity, SourceAtom, BlendWeight) FinalAtom.Rotation = DeltaAtom.Rotation * FinalAtom.Rotation FinalAtom.Translation += DeltaAtom.Translation FinalAtom.Scale3D *= DeltaAtom.Scale3D
Parameters
| Name | Description |
|---|---|
| FinalAtom | [in/out] The atom to accumulate the blended source atom into |
| SourceAtom | The target transformation (used when BlendWeight = 1); this is modified during the process |
| BlendWeight | The blend weight between Identity and SourceAtomSet this transform to the weighted blend of the supplied two transforms. |