Matrix6By6.Multiply Operator (Double, Matrix6By6) |
Multiplies a scalar by a matrix.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static Matrix6By6 operator *(
double scalar,
Matrix6By6 matrix
)
Public Shared Operator * (
scalar As Double,
matrix As Matrix6By6
) As Matrix6By6
public:
static Matrix6By6^ operator *(
double scalar,
Matrix6By6^ matrix
)
static let inline (*)
scalar : float *
matrix : Matrix6By6 : Matrix6By6
Parameters
- scalar
- Type: System.Double
The scalar. - matrix
- Type: AGI.Foundation.Coordinates.Matrix6By6
The matrix.
Return Value
Type:
Matrix6By6The result of the multiplication.
See Also