XMVectorSaturate 함수(directxmath.h)
벡터의 각 구성 요소를 0.0f에서 1.0f 범위로 포화합니다.
구문
XMVECTOR XM_CALLCONV XMVectorSaturate(
[in] FXMVECTOR V
) noexcept;
매개 변수
[in] V
포화할 벡터입니다.
반환 값
각 구성 요소가 포화된 벡터를 반환합니다.
설명
다음 의사 코드는 함수의 작업을 보여 줍니다.
XMVECTOR Result;
Result.x = min(max(V1.x, 0.0f), 1.0f);
Result.y = min(max(V1.y, 0.0f), 1.0f);
Result.z = min(max(V1.z, 0.0f), 1.0f);
Result.w = min(max(V1.w, 0.0f), 1.0f);
return Result;
플랫폼 요구 사항
Windows 8용 Windows SDK를 사용하는 Microsoft Visual Studio 2010 또는 Microsoft Visual Studio 2012. Win32 데스크톱 앱, Windows 스토어 앱 및 Windows Phone 8개 앱에서 지원됩니다.요구 사항
대상 플랫폼 | Windows |
헤더 | directxmath.h(DirectXMath.h 포함) |