Matrix3x2.Multiply 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
对矩阵执行乘法运算。
重载
Multiply(Matrix3x2, Matrix3x2) |
返回将两个矩阵相乘得到的矩阵。 |
Multiply(Matrix3x2, Single) |
返回按标量系数缩放指定矩阵的所有元素后得到的矩阵。 |
Multiply(Matrix3x2, Matrix3x2)
- Source:
- Matrix3x2.cs
- Source:
- Matrix3x2.cs
- Source:
- Matrix3x2.cs
返回将两个矩阵相乘得到的矩阵。
public:
static System::Numerics::Matrix3x2 operator *(System::Numerics::Matrix3x2 value1, System::Numerics::Matrix3x2 value2);
public static System.Numerics.Matrix3x2 operator * (System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);
static member ( * ) : System.Numerics.Matrix3x2 * System.Numerics.Matrix3x2 -> System.Numerics.Matrix3x2
Public Shared Operator * (value1 As Matrix3x2, value2 As Matrix3x2) As Matrix3x2
参数
- value1
- Matrix3x2
第一个矩阵。
- value2
- Matrix3x2
第二个矩阵。
返回
乘积矩阵。
注解
方法 Multiply 定义 对象的乘法运算符的 Matrix3x2 运算。
适用于
Multiply(Matrix3x2, Single)
- Source:
- Matrix3x2.cs
- Source:
- Matrix3x2.cs
- Source:
- Matrix3x2.cs
返回按标量系数缩放指定矩阵的所有元素后得到的矩阵。
public:
static System::Numerics::Matrix3x2 operator *(System::Numerics::Matrix3x2 value1, float value2);
public static System.Numerics.Matrix3x2 operator * (System.Numerics.Matrix3x2 value1, float value2);
static member ( * ) : System.Numerics.Matrix3x2 * single -> System.Numerics.Matrix3x2
Public Shared Operator * (value1 As Matrix3x2, value2 As Single) As Matrix3x2
参数
- value1
- Matrix3x2
要缩放的矩阵。
- value2
- Single
要使用的缩放值。
返回
缩放后的矩阵。
注解
方法 Multiply 定义 对象的乘法运算符的 Matrix3x2 运算。