XMBYTEN2::XMBYTEN2 (constfloat*) 函数 (directxpackedvector.h)
从双元素float
数组参数初始化 XMBYTEN2 的新实例。
此构造函数从双元素float
数组参数初始化 XMBYTEN2 的新实例。
注意 此构造函数仅适用于 C++。
语法
void XMBYTEN2(
const float *pArray
) noexcept;
参数
pArray
包含用于初始化新实例的两个组件的值的双元素float
数组XMBYTEN2。
返回值
无
备注
矢量组件 | Array 元素 | 范围 | 说明 |
---|---|---|---|
x | pArray[0] | -1.0, 1.0 | 在实例化期间,pArray[0] 被固定在 -1 和 1 之间,乘以 127.0f 并分配给 x。 |
y | pArray[1] | -1.0, 1.0 | 在实例化期间,pArray[1] 被固定在 -1 和 1 之间,乘以 127.0f,然后分配给 y。 |
以下伪代码演示此构造函数的操作:
XMBYTEN2 instance;
_x1=min( max( pArray[0], -1.0 ), 1.0 );
_y1=min( max( pArray[1], -1.0 ), 1.0 );
_x1 = round( _x1 * 127.0f);
_y1 = round( _y1 * 127.0f);
instance.x = (int8_t)_x1;
instance.y = (int8_t)_y1;
要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxpackedvector.h |