XMVectorTruncate 函式 (directxmath.h)
將向量的每個元件四捨五入為最接近的整數值,方向為零。
語法
XMVECTOR XM_CALLCONV XMVectorTruncate(
[in] FXMVECTOR V
) noexcept;
參數
[in] V
要截斷其元件的向量。
傳回值
傳回向量,其元件會四捨五入為零方向的最接近整數值。
備註
傳回值是根據下列邏輯來計算,這會保留特殊值 (INF、+INF、NaN、-NaN) 。
Result[0] = (fabsf(V[0]) < 8388608.0f) ? ((float)((int32_t)V[0])) : V[0];
Result[1] = (fabsf(V[1]) < 8388608.0f) ? ((float)((int32_t)V[1])) : V[1];
Result[2] = (fabsf(V[2]) < 8388608.0f) ? ((float)((int32_t)V[2])) : V[2];
Result[3] = (fabsf(V[3]) < 8388608.0f) ? ((float)((int32_t)V[3])) : V[3];
平臺需求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 搭配 Windows SDK for Windows 8。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。規格需求
需求 | 值 |
---|---|
目標平台 | Windows |
標頭 | directxmath.h (包含 DirectXMath.h) |