XMVectorModAngles 函数 (directxmath.h)
计算每分量角度取模 2PI。
语法
XMVECTOR XM_CALLCONV XMVectorModAngles(
[in] FXMVECTOR Angles
) noexcept;
参数
[in] Angles
角度分量的向量。
返回值
返回一个向量,其分量是 Angles 取模 2PI 的对应分量。
注解
以下伪代码演示函数的操作:
XMVECTOR result;
result.x = Angles.x - XM_2PI * round( Angles.x / XM_2PI );
result.y = Angles.y - XM_2PI * round( Angles.y / XM_2PI );
result.z = Angles.z - XM_2PI * round( Angles.z / XM_2PI );
result.w = Angles.w - XM_2PI * round( Angles.w / XM_2PI );
return result;
平台要求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 以及 Windows SDK for Windows 8。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxmath.h (包括 DirectXMath.h) |