Matrix.SetConcat(Matrix, Matrix) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Set the matrix to the concatenation of the two specified matrices and return true.
[Android.Runtime.Register("setConcat", "(Landroid/graphics/Matrix;Landroid/graphics/Matrix;)Z", "GetSetConcat_Landroid_graphics_Matrix_Landroid_graphics_Matrix_Handler")]
public virtual bool SetConcat (Android.Graphics.Matrix? a, Android.Graphics.Matrix? b);
[<Android.Runtime.Register("setConcat", "(Landroid/graphics/Matrix;Landroid/graphics/Matrix;)Z", "GetSetConcat_Landroid_graphics_Matrix_Landroid_graphics_Matrix_Handler")>]
abstract member SetConcat : Android.Graphics.Matrix * Android.Graphics.Matrix -> bool
override this.SetConcat : Android.Graphics.Matrix * Android.Graphics.Matrix -> bool
Parameters
- a
- Matrix
- b
- Matrix
Returns
- Attributes
Remarks
Set the matrix to the concatenation of the two specified matrices and return true.
Either of the two matrices may also be the target matrix, that is matrixA.setConcat(matrixA, matrixB);
is valid.
<p class="note"> In android.os.Build.VERSION_CODES#GINGERBREAD_MR1
and below, this function returns true only if the result can be represented. In android.os.Build.VERSION_CODES#HONEYCOMB
and above, it always returns true. </p>
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.