XMSHORT4::XMSHORT4 (constint16_t*) 函式 (directxpackedvector.h)
從四int16_t
個項目數位自變數初始化 XMSHORT4的新實例。
這個建構函式會從項目int16_t
數位自變數初始化 XMSHORT4 的新實例。
注意 此建構函式只能在 C++ 下使用。
語法
void XMSHORT4(
const int16_t *pArray
) noexcept;
參數
pArray
四個元素 int16_t
數位列,其中包含用來初始化新實例 XMSHORT4四個元件的值。
傳回值
無
備註
下列虛擬程式代碼示範此建構函式的作業:
XMSHORT4 instance;
instance.x = pArray[0];
instance.y = pArray[1];
instance.z = pArray[2];
instance.w = pArray[3];
規格需求
需求 | 值 |
---|---|
目標平台 | Windows |
標頭 | directxpackedvector.h |