Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Math > API/Runtime/Core/Math/VectorReciprocal
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Math/UnrealMathFPU.h |
| Include | #include "Math/UnrealMathFPU.h" |
VectorRegister4Float VectorReciprocal
(
const VectorRegister4Float & Vec
)
Remarks
Computes the reciprocal of a vector (component-wise) and returns the result. VectorRegister4Float( 1.0f / Vec.x, 1.0f / Vec.y, 1.0f / Vec.z, 1.0f / Vec.w )
Parameters
| Name | Description |
|---|---|
| Vec | 1st vector |