Matrix4x4.Multiply 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
对矩阵执行乘法运算。
重载
| Multiply(Matrix4x4, Matrix4x4) | 
						 返回将两个矩阵相乘得到的矩阵。  | 
        	
| Multiply(Matrix4x4, Single) | 
						 返回按标量系数缩放指定矩阵的所有元素后得到的矩阵。  | 
        	
Multiply(Matrix4x4, Matrix4x4)
- Source:
 - Matrix4x4.cs
 
- 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
 
- 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 运算。