Matrix4x4.Multiply 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
행렬에서 곱하기 연산을 수행합니다.
오버로드
Multiply(Matrix4x4, Matrix4x4) |
두 행렬을 곱한 결과로 생성되는 행렬을 반환합니다. |
Multiply(Matrix4x4, Single) |
지정된 행렬의 모든 요소를 스칼라 인수로 크기 조정하여 생성되는 행렬을 반환합니다. |
Multiply(Matrix4x4, Matrix4x4)
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
두 행렬을 곱한 결과로 생성되는 행렬을 반환합니다.
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
두 번째 행렬입니다.
반환
행렬곱입니다.
설명
메서드는 Multiply 개체에 대한 곱하기 연산자의 연산을 Matrix4x4 정의합니다.
적용 대상
Multiply(Matrix4x4, Single)
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
지정된 행렬의 모든 요소를 스칼라 인수로 크기 조정하여 생성되는 행렬을 반환합니다.
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
사용할 크기 조정 값입니다.
반환
크기 조정된 행렬입니다.
설명
메서드는 Multiply 개체에 대한 곱하기 연산자의 연산을 Matrix4x4 정의합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET