XMVectorMultiplyAdd 函式 (directxmath.h)
計算新增至第三個向量的前兩個向量乘積。
語法
XMVECTOR XM_CALLCONV XMVectorMultiplyAdd(
[in] FXMVECTOR V1,
[in] FXMVECTOR V2,
[in] FXMVECTOR V3
) noexcept;
參數
[in] V1
向量乘數。
[in] V2
向量乘法。
[in] V3
向量附加元件。
傳回值
傳回向量的產品總和。
備註
下列虛擬程式代碼示範函式的作業:
XMVECTOR Result;
Result.x = V1.x * V2.x + V3.x;
Result.y = V1.y * V2.y+ V3.y;
Result.z = V1.z * V2.z+ V3.z;
Result.w = V1.w * V2.w+ V3.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) |