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