MatrixMultiply Method (Matrix, Matrix, Matrix, Int32, Int32)

RAGE Plugin Hook Documentation

[This is preliminary documentation and is subject to change.]

Determines the products of of an array of matrices by a single matrix.

Namespace:  Rage
Assembly:  RagePluginHook (in RagePluginHook.dll) Version: 0.0.0.0 (0.56.1131.11510)
Syntax

public static void Multiply(
	Matrix[] left,
	Matrix right,
	Matrix[] result,
	int offset,
	int count
)

Parameters

left
Type: RageMatrix
The first matrix array to multiply.
right
Type: RageMatrix
The matrix to multiply the matrices in the array by.
result
Type: RageMatrix
The array of products of the matrices.
offset
Type: SystemInt32
The offset at which to begin the multiplication.
count
Type: SystemInt32
The number of matrices to multiply, or 0 to process the entire array.
See Also

Reference