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