XMVectorNegativeMultiplySubtract 函式 (directxmath.h)
計算第三個向量與前兩個向量乘積的差異。
語法
XMVECTOR XM_CALLCONV XMVectorNegativeMultiplySubtract(
[in] FXMVECTOR V1,
[in] FXMVECTOR V2,
[in] FXMVECTOR V3
) noexcept;
參數
[in] V1
向量乘數。
[in] V2
向量乘法。
[in] V3
向量減法。
傳回值
傳回產生的向量。 請參閱備註。
備註
下列虛擬程式代碼示範函式的作業:
XMVECTOR result;
result.x = V3.x - V1.x * V2.x;
result.y = V3.y - V1.y * V2.y;
result.z = V3.z - V1.z * V2.z;
result.w = V3.w - V1.w * V2.w;
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) |