ColorMatrix.SetConcat(ColorMatrix, ColorMatrix) 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.
Sets this matrix to the concatenation of the two specified matrices.
[Android.Runtime.Register("setConcat", "(Landroid/graphics/ColorMatrix;Landroid/graphics/ColorMatrix;)V", "GetSetConcat_Landroid_graphics_ColorMatrix_Landroid_graphics_ColorMatrix_Handler")]
public virtual void SetConcat(Android.Graphics.ColorMatrix? matA, Android.Graphics.ColorMatrix? matB);
[<Android.Runtime.Register("setConcat", "(Landroid/graphics/ColorMatrix;Landroid/graphics/ColorMatrix;)V", "GetSetConcat_Landroid_graphics_ColorMatrix_Landroid_graphics_ColorMatrix_Handler")>]
abstract member SetConcat : Android.Graphics.ColorMatrix * Android.Graphics.ColorMatrix -> unit
override this.SetConcat : Android.Graphics.ColorMatrix * Android.Graphics.ColorMatrix -> unit
Parameters
- matA
- ColorMatrix
The matrix applied second.
- matB
- ColorMatrix
The matrix applied first.
- Attributes
Remarks
The resulting matrix has the same effect as applying matB and then applying matA. Either argument may be this matrix.
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.