Share via


Matrix44.Concat(Matrix44) Method

Definition

Multiplies this matrix (A) and provided Matrix (B) in the order of A * B.

[Android.Runtime.Register("concat", "(Landroid/graphics/Matrix44;)Landroid/graphics/Matrix44;", "GetConcat_Landroid_graphics_Matrix44_Handler", ApiSince=35)]
public virtual Android.Graphics.Matrix44 Concat (Android.Graphics.Matrix44 b);
[<Android.Runtime.Register("concat", "(Landroid/graphics/Matrix44;)Landroid/graphics/Matrix44;", "GetConcat_Landroid_graphics_Matrix44_Handler", ApiSince=35)>]
abstract member Concat : Android.Graphics.Matrix44 -> Android.Graphics.Matrix44
override this.Concat : Android.Graphics.Matrix44 -> Android.Graphics.Matrix44

Parameters

b
Matrix44

The second Matrix in the concatenation operation

Returns

A reference to this Matrix, which can be used to chain Matrix operations

Attributes

Remarks

Multiplies `this` matrix (A) and provided Matrix (B) in the order of A * B. The result is saved in `this` Matrix.

Java documentation for android.graphics.Matrix44.concat(android.graphics.Matrix44).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to