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;
플랫폼 요구 사항
Windows 8 Windows SDK를 사용하는 Microsoft Visual Studio 2010 또는 Microsoft Visual Studio 2012. Win32 데스크톱 앱, Windows 스토어 앱 및 Windows Phone 8개 앱에 지원됩니다.요구 사항
요구 사항 | 값 |
---|---|
대상 플랫폼 | Windows |
헤더 | directxmath.h(DirectXMath.h 포함) |