XMComparisonAllInBounds 函数 (directxmath.h)
测试比较值,以确定所有比较的组件是否都在设置的边界内。
语法
bool XMComparisonAllInBounds(
[in] uint32_t CR
) noexcept;
参数
[in] CR
要测试的比较值。 通常使用 DirectXMath 函数的记录版本(如 XMVectorInBoundsR)检索比较值。 记录函数的名称以“R”结尾。
返回值
如果设置边界内的所有比较组件,则返回 true。
备注
以下代码片段突出显示了如何使用此函数:
uint32_t comparisonValue = XMVectorInBoundsR( V, Bounds );
if( XMComparisonAllInBounds( comparisonValue ) )
{
DoStuff();
}
DoStuff
仅当 V 的所有四个组件都在由 Bounds 和 -Bounds 确定的卷内时,才会调用 该函数。
平台要求
带有 Windows SDK for Windows 8 的 Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。要求
目标平台 | Windows |
标头 | directxmath.h |