XMSHORT4 结构 (directxpackedvector.h)
由 16 位带符号整数分量的 4D 向量。
有关使用 C++ 编程时可用的 XMSHORT4
其他功能(例如构造函数和运算符)的列表,请参阅 XMSHORT4扩展。
语法
struct XMSHORT4 {
union {
struct {
int16_t x;
int16_t y;
int16_t z;
int16_t w;
};
uint64_t v;
};
void XMSHORT4();
void XMSHORT4(
const XMSHORT4 & unnamedParam1
);
XMSHORT4 & operator=(
const XMSHORT4 & unnamedParam1
);
void XMSHORT4(
XMSHORT4 && unnamedParam1
);
XMSHORT4 & operator=(
XMSHORT4 && unnamedParam1
);
void XMSHORT4(
uint64_t Packed
) noexcept;
void XMSHORT4(
int16_t _x,
int16_t _y,
int16_t _z,
int16_t _w
) noexcept;
void XMSHORT4(
const int16_t *pArray
) noexcept;
void XMSHORT4(
float _x,
float _y,
float _z,
float _w
) noexcept;
void XMSHORT4(
const float *pArray
) noexcept;
XMSHORT4 & operator=(
uint64_t Packed
) noexcept;
};
成员
x
[-32767, 32767] 范围内的有符号 16 位整数,用于描述矢量的 x 坐标。
y
[-32767, 32767] 范围内的有符号 16 位整数,用于描述矢量的 y 坐标。
z
[-32767, 32767] 范围内的有符号 16 位整数,用于描述矢量的 z 坐标。
w
[-32767, 32767] 范围内的有符号 16 位整数,用于描述矢量的 w 坐标。
v
的默认构造函数 XMSHORT4
。
XMSHORT4的默认构造函数。
void XMSHORT4 ( const XMSHORT4 & unnamedParam1)
的 XMSHORT4
构造函数。
XMSHORT4的构造函数。
XMSHORT4 & operator= ( const XMSHORT4 & unnamedParam1)
将 的一个实例中的 XMSHORT4
向量组件数据分配给 的 XMSHORT4
当前实例。
此运算符将 XMSHORT4 的一个实例中的矢量分量数据分配给 的 XMSHORT4
当前实例。
void XMSHORT4 ( XMSHORT4 && unnamedParam1)
的 XMSHORT4
构造函数。
XMSHORT4的构造函数。
XMSHORT4 & operator=( XMSHORT4 && unnamedParam1)
void XMSHORT4 ( uint64_t Packed) noexcept
的 XMSHORT4
构造函数。
XMSHORT4的构造函数。
void XMSHORT4 ( int16_t _x、int16_t _y、int16_t _z、int16_t _w) noexcept
从四int16_t
个参数初始化 的新XMSHORT4
实例。
此构造函数从四int16_t
个参数初始化 XMSHORT4 的新实例。
void XMSHORT4 ( const int16_t *pArray) noexcept
从四元素int16_t
数组参数初始化 XMSHORT4 的新实例。
此构造函数从 from 元素int16_t
数组参数初始化 XMSHORT4 的新实例。
void XMSHORT4 ( float _x、float _y、float _z、float _w) noexcept
从四float
个参数初始化 的新XMSHORT4
实例。
此构造函数从四float
个参数初始化 XMSHORT4 的新实例。
void XMSHORT4 ( const float *pArray) noexcept
从四元素float
数组参数初始化 XMSHORT4 的新实例。
此构造函数从四元素float
数组参数初始化 XMSHORT4 的新实例。
XMSHORT4 & operator=( uint64_t Packed) noexcept
注解
XMSHORT4
可以使用 XMLoadShort4 加载到 XMVECTOR 的实例中。
XMVECTOR
的实例可以使用 XMStoreShort4 存储到 的XMSHORT4
实例中。
命名 空间: 使用 DirectX::P ackedVector
平台要求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 以及 Windows SDK for Windows 8。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。要求
标头 | directxpackedvector.h |