Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Math > API/Runtime/Core/Math/VectorPow
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Math/UnrealMathNeon.h |
| Include | #include "Math/UnrealMathNeon.h" |
VectorRegister4Float VectorPow
(
const VectorRegister4Float & Base,
const VectorRegister4Float & Exponent
)
Remarks
Calculates x raised to the power of y (component-wise). VectorRegister4Float( Base.x^Exponent.x, Base.y^Exponent.y, Base.z^Exponent.z, Base.w^Exponent.w )
Parameters
| Name | Description |
|---|---|
| Base | Base vector |
| Exponent | Exponent vector |