共用方式為


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所決定的磁片區內時,才會呼叫函式。

平臺需求

Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 搭配 Windows SDK for Windows 8。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。

需求

   
目標平台 Windows
標頭 directxmath.h

另請參閱

DirectXMath 程式庫公用程式函式

XMComparisonAllFalse

XMComparisonAllTrue

XMComparisonAnyFalse

XMComparisonAnyOutOfBounds

XMComparisonAnyTrue

XMComparisonMixed