XMVectorSetInt 函式 (directxmath.h)
建立具有不帶正負號整陣列件的向量。
語法
XMVECTOR XM_CALLCONV XMVectorSetInt(
[in] uint32_t x,
[in] uint32_t y,
[in] uint32_t z,
[in] uint32_t w
) noexcept;
參數
[in] x
uint32_t 值,以指派給傳回向量的 x 元件。
[in] y
uint32_t 值,以指派給傳回向量的 Y 元件。
[in] z
uint32_t值, 以指派給傳回向量的 z 元件。
[in] w
uint32_t值, 以指派給傳回向量的 w 元件。
傳回值
每個實例 XMVECTOR 的四個元件 (x、y、z和 w) 是一個整數,其值與 對應的輸入引數 XMVectorSetInt
相同。
備註
下列虛擬程式碼示範函式的作業:
XMVECTOR V;
uint32_t x,y,z,w;
V.x = x;
V.y = y;
V.z = z;
V.w = w;
return V;
平臺需求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 搭配 Windows SDK for Windows 8。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。需求
目標平台 | Windows |
標頭 | directxmath.h (包含 DirectXMath.h) |