Matrix6By6Multiply Operator (Double, Matrix6By6) |
Multiplies a scalar by a matrix.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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: SystemDouble
The scalar. - matrix
- Type: AGI.Foundation.CoordinatesMatrix6By6
The matrix.
Return Value
Type:
Matrix6By6The result of the multiplication.
See Also