DiagonalMatrix.Multiply Method |
Creates a new
Matrix which has the value of the current matrix multiplied by the given factor.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic override Matrix Multiply(
double factor
)
Public Overrides Function Multiply (
factor As Double
) As Matrix
public:
virtual Matrix^ Multiply(
double factor
) override
abstract Multiply :
factor : float -> Matrix
override Multiply :
factor : float -> Matrix
Parameters
- factor
- Type: System.Double
The 'scalar' to multiply by the current Matrix.
Return Value
Type:
MatrixThe new matrix.
See Also