다음을 통해 공유


Matrix.RotationY 메서드

업데이트: 2007년 11월

y축을 기준으로 회전하는 매트릭스를 만듭니다.

네임스페이스:  Microsoft.WindowsMobile.DirectX
어셈블리:  Microsoft.WindowsMobile.DirectX(Microsoft.WindowsMobile.DirectX.dll)

구문

‘선언
Public Shared Function RotationY ( _
    angle As Single _
) As Matrix
‘사용 방법
Dim angle As Single
Dim returnValue As Matrix

returnValue = Matrix.RotationY(angle)
public static Matrix RotationY(
    float angle
)
public:
static Matrix RotationY(
    float angle
)
public static function RotationY(
    angle : float
) : Matrix

매개 변수

  • angle
    형식: System.Single

    라디안 단위의 회전 각도입니다. 각도는 회전 축을 따라 원점쪽을 바라본 상태에서 시계 방향으로 측정됩니다.

반환 값

형식: Microsoft.WindowsMobile.DirectX.Matrix

회전된 Matrix 구조체입니다.

예제

다음 예제에서는 RotationY 메서드를 사용하는 방법을 보여 줍니다. 이 예제는 Windows SDK(소프트웨어 개발 키트)의 Direct3D 모바일 매트릭스 샘플에서 가져온 것입니다.

' For the world matrix, rotate the object about the y-axis.
' Set up the rotation matrix to generate one full rotation (2*PI radians) 
' every 1000 ms. To avoid the loss of precision inherent in very high 
' floating-point numbers, the system time is modulated by the rotation 
' period before conversion to a radian angle.
Dim iTime As Integer = Environment.TickCount Mod 1000
Dim fAngle As Single = iTime * (2.0F * System.Convert.ToSingle(Math.PI)) / 1000.0F
device.Transform.World = Matrix.RotationY(fAngle)
// For the world matrix, rotate the object about the y-axis.

// Set up the rotation matrix to generate one full rotation (2*PI radians)
// every 1000 ms. To avoid the loss of precision inherent in very high
// floating-point numbers, the system time is modulated by the rotation
// period before conversion to a radian angle.
int iTime = Environment.TickCount % 1000;
float fAngle = iTime * (2.0f * (float)Math.PI) / 1000.0f;
device.Transform.World = Matrix.RotationY(fAngle);

권한

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

플랫폼

Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Compact Framework

3.5, 2.0에서 지원

참고 항목

참조

Matrix 구조체

Matrix 멤버

Microsoft.WindowsMobile.DirectX 네임스페이스