Matrix4x4.Multiply 연산자

정의

행렬에서 곱하기 연산을 수행합니다.

오버로드

Multiply(Matrix4x4, Matrix4x4)

두 행렬을 곱한 결과로 생성되는 행렬을 반환합니다.

Multiply(Matrix4x4, Single)

지정된 행렬의 모든 요소를 스칼라 인수로 크기 조정하여 생성되는 행렬을 반환합니다.

Multiply(Matrix4x4, Matrix4x4)

두 행렬을 곱한 결과로 생성되는 행렬을 반환합니다.

public:
 static System::Numerics::Matrix4x4 operator *(System::Numerics::Matrix4x4 value1, System::Numerics::Matrix4x4 value2);
public static System.Numerics.Matrix4x4 operator * (System.Numerics.Matrix4x4 value1, System.Numerics.Matrix4x4 value2);
static member ( * ) : System.Numerics.Matrix4x4 * System.Numerics.Matrix4x4 -> System.Numerics.Matrix4x4
Public Shared Operator * (value1 As Matrix4x4, value2 As Matrix4x4) As Matrix4x4

매개 변수

value1
Matrix4x4

첫 번째 행렬입니다.

value2
Matrix4x4

두 번째 행렬입니다.

반환

Matrix4x4

행렬곱입니다.

설명

이 메서드는 Multiply 개체에 대한 곱하기 연산자의 연산을 Matrix4x4 정의합니다.

적용 대상

Multiply(Matrix4x4, Single)

지정된 행렬의 모든 요소를 스칼라 인수로 크기 조정하여 생성되는 행렬을 반환합니다.

public:
 static System::Numerics::Matrix4x4 operator *(System::Numerics::Matrix4x4 value1, float value2);
public static System.Numerics.Matrix4x4 operator * (System.Numerics.Matrix4x4 value1, float value2);
static member ( * ) : System.Numerics.Matrix4x4 * single -> System.Numerics.Matrix4x4
Public Shared Operator * (value1 As Matrix4x4, value2 As Single) As Matrix4x4

매개 변수

value1
Matrix4x4

크기를 조정할 행렬입니다.

value2
Single

사용할 크기 조정 값입니다.

반환

Matrix4x4

크기 조정된 행렬입니다.

설명

이 메서드는 Multiply 개체에 대한 곱하기 연산자의 연산을 Matrix4x4 정의합니다.

적용 대상