Matrix4x4.CreateRotationY Метод

Определение

Создает матрицу для поворота точек вокруг оси Y.

Перегрузки

CreateRotationY(Single)

Создает матрицу для поворота точек вокруг оси Y.

CreateRotationY(Single, Vector3)

Значение поворота вокруг оси Y относительно центральной точки (в радианах).

CreateRotationY(Single)

Source:
Matrix4x4.cs
Source:
Matrix4x4.cs
Source:
Matrix4x4.cs

Создает матрицу для поворота точек вокруг оси Y.

public:
 static System::Numerics::Matrix4x4 CreateRotationY(float radians);
public static System.Numerics.Matrix4x4 CreateRotationY (float radians);
static member CreateRotationY : single -> System.Numerics.Matrix4x4
Public Shared Function CreateRotationY (radians As Single) As Matrix4x4

Параметры

radians
Single

Значение поворота вокруг оси Y (в радианах).

Возвращаемое значение

Матрица поворота.

Применяется к

CreateRotationY(Single, Vector3)

Source:
Matrix4x4.cs
Source:
Matrix4x4.cs
Source:
Matrix4x4.cs

Значение поворота вокруг оси Y относительно центральной точки (в радианах).

public:
 static System::Numerics::Matrix4x4 CreateRotationY(float radians, System::Numerics::Vector3 centerPoint);
public static System.Numerics.Matrix4x4 CreateRotationY (float radians, System.Numerics.Vector3 centerPoint);
static member CreateRotationY : single * System.Numerics.Vector3 -> System.Numerics.Matrix4x4
Public Shared Function CreateRotationY (radians As Single, centerPoint As Vector3) As Matrix4x4

Параметры

radians
Single

Значение поворота вокруг оси Y (в радианах).

centerPoint
Vector3

Центральная точка.

Возвращаемое значение

Матрица поворота.

Применяется к