Matrix4x4.Multiply 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
对矩阵执行乘法运算。
重载
| 名称 | 说明 |
|---|---|
| Multiply(Matrix4x4, Single) |
返回矩阵,该矩阵由标量因子缩放指定矩阵的所有元素的结果。 |
| Multiply(Matrix4x4, 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
要使用的缩放值。
返回
缩放矩阵。
注解
该方法 Multiply 定义对象的乘法运算符 Matrix4x4 的操作。
适用于
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
第二个矩阵。
返回
产品矩阵。
注解
该方法 Multiply 定义对象的乘法运算符 Matrix4x4 的操作。