XMUSHORT4::XMUSHORT4 (float、float、float、float) 函式 (directxpackedvector.h)
從四float
個自變數初始化 的新實例XMUSHORT4
。
這個建構函式會從四float
個自變數初始化 XMUSHORT4 的新實例。
注意 此建構函式只能在 C++ 下使用。
語法
void XMUSHORT4(
float _x,
float _y,
float _z,
float _w
) noexcept;
參數
_x
向量的 x 座標值,新XMUSHORT4
實例的 x 成員。
_y
向量的 Y 座標值,新XMUSHORT4
實例的 Y 成員。
_z
向量的 z 座標值,新XMUSHORT4
實例的 z 成員。
_w
向量的 w 座標值,新 XMUSHORT4
實例的 w 成員。
傳回值
無
備註
建構函式的每個自變數大小都會限製為16位無符號整數[0.0, 65535.0]所支援的範圍。
下列虛擬程式代碼示範此建構函式的作業:
XMUSHORT4 instance;
instance.x = (uint16_t)min( max( _x, 0.0 ), 65535.0 );
instance.y = (uint16_t)min( max( _y, 0.0 ), 65535.0 );
instance.z = (uint16_t)min( max( _z, 0.0 ), 65535.0 );
instance.w = (uint16_t)min( max( _w, 0.0 ), 65535.0 );
規格需求
需求 | 值 |
---|---|
目標平台 | Windows |
標頭 | directxpackedvector.h |
另請參閱
參考