XMVectorExp10 函式 (directxmath.h)
計算每個元件的乘冪十。
語法
XMVECTOR XM_CALLCONV XMVectorExp10(
[in] FXMVECTOR V
) noexcept;
參數
[in] V
用於基底十之指數的向量。
傳回值
傳回向量,其元件是十個引發至 V 對應元件的乘冪。
備註
平臺需求
支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。此函式已在 DirectXMath 3.16 中新增
XMVectorExp10 的實作方式如下:
XMVECTOR Result;
Result.x = powf(10.0f, V.x);
Result.y = powf(10.0f, V.y);
Result.z = powf(10.0f, V.z);
Result.w = powf(10.0f, V.w);
return Result;
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | Windows 10 組建 20348 |
最低支援的伺服器 | Windows 10 組建 20348 |
目標平台 | Windows |
標頭 | directxmath.h (包含 DirectXMath.h) |