XMSHORT2結構 (directxpackedvector.h)
描述包含16位帶正負號和正規化整數位元件的2D向量。
如需在 C++ 中程式設計時可使用的其他功能清單,例如建 XMSHORT2
構函式和運算符,請參閱 XMSHORT2 Extensions。
語法
struct XMSHORT2 {
union {
struct {
int16_t x;
int16_t y;
};
uint32_t v;
};
void XMSHORT2();
void XMSHORT2(
const XMSHORT2 & unnamedParam1
);
XMSHORT2 & operator=(
const XMSHORT2 & unnamedParam1
);
void XMSHORT2(
XMSHORT2 && unnamedParam1
);
XMSHORT2 & operator=(
XMSHORT2 && unnamedParam1
);
void XMSHORT2(
uint32_t Packed
) noexcept;
void XMSHORT2(
int16_t _x,
int16_t _y
) noexcept;
void XMSHORT2(
const int16_t *pArray
) noexcept;
void XMSHORT2(
float _x,
float _y
) noexcept;
void XMSHORT2(
const float *pArray
) noexcept;
XMSHORT2 & operator=(
uint32_t Packed
) noexcept;
};
成員
x
範圍 [-32767, 32767] 中的帶正負號整數,描述向量的 X 座標。
y
範圍 [-32767, 32767] 中的帶正負號整數,描述向量的 Y 座標。
v
的預設建構函式 XMSHORT2
。
XMSHORT2的預設建構函式。
void XMSHORT2 ( const XMSHORT2 & unnamedParam1)
的建構函式 XMSHORT2
。
XMSHORT2的建構函式。
XMSHORT2 & operator= ( const XMSHORT2 & unnamedParam1)
將 向量元件數據從的一個實例 XMSHORT2
指派給 目前的 實例 XMSHORT2
。
這個運算子會將向量元件數據從 XMSHORT2 的一個實例指派給 目前的實例 XMSHORT2
。
void XMSHORT2 ( XMSHORT2 && unnamedParam1)
的建構函式 XMSHORT2
。
XMSHORT2的建構函式。
XMSHORT2 & operator=( XMSHORT2 && unnamedParam1)
void XMSHORT2 ( uint32_t Packed) noexcept
的建構函式 XMSHORT2
。
XMSHORT2的建構函式。
void XMSHORT2 ( int16_t _x, int16_t _y) noexcept
從兩int16_t
個自變數初始化 的新實例XMSHORT2
。
這個建構函式會從兩int16_t
個自變數初始化 XMSHORT2 的新實例。
void XMSHORT2 ( const int16_t *pArray) noexcept
從兩int16_t
個項目數位自變數初始化 XMSHORT2 的新實例。
這個建構函式會從兩int16_t
個項目數位化自變數初始化 XMSHORT2的新實例。
void XMSHORT2 ( float _x,float _y) noexcept
從兩float
個自變數初始化 的新實例XMSHORT2
。
這個建構函式會從兩float
個自變數初始化 XMSHORT2 的新實例。
void XMSHORT2 ( const float *pArray) noexcept
從兩float
個項目數位自變數初始化 XMSHORT2 的新實例。
這個建構函式會從兩float
個項目數位化自變數初始化 XMSHORT2的新實例。
XMSHORT2 & operator=( uint32_t Packed) noexcept
備註
使用 XMLoadShort2 將此結構載入 XMVECTOR 時,元件會正規化。 每個元件都會除以 32767.0f。
命名空間: 使用 DirectX::P ackedVector
平臺需求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 與 Windows SDK for Windows 8。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。規格需求
需求 | 值 |
---|---|
標頭 | directxpackedvector.h |