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