XMVectorNearEqual 函式 (directxmath.h)
針對指定臨界值內的兩個向量相等執行個別元件測試。
語法
XMVECTOR XM_CALLCONV XMVectorNearEqual(
[in] FXMVECTOR V1,
[in] FXMVECTOR V2,
[in] FXMVECTOR Epsilon
) noexcept;
參數
[in] V1
要比較的第一個向量。
[in] V2
第二個向量比較。
[in] Epsilon
用來進行相等的容錯值。
傳回值
傳回包含每個元件測試結果的向量。
備註
下列虛擬程式代碼示範函式的作業:
XMVECTOR Result;
Result.x = (abs(V1.x - V2.x) <= Epsilon) ? 0xFFFFFFFF : 0;
Result.y = (abs(V1.y - V2.y) <= Epsilon) ? 0xFFFFFFFF : 0;
Result.z = (abs(V1.z - V2.z) <= Epsilon) ? 0xFFFFFFFF : 0;
Result.w = (abs(V1.w - V2.w) <= Epsilon) ? 0xFFFFFFFF : 0;
return Result;
平臺需求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 搭配 Windows SDK for Windows 8。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。規格需求
需求 | 值 |
---|---|
目標平台 | Windows |
標頭 | directxmath.h (包含 DirectXMath.h) |