Matrix Constructors
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.
Overloads
Matrix() |
Create an identity matrix |
Matrix(Matrix) |
Create a matrix that is a (deep) copy of src |
Matrix(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
Matrix()
Create an identity matrix
[Android.Runtime.Register(".ctor", "()V", "")]
public Matrix ();
- Attributes
Remarks
Create an identity matrix
Java documentation for android.graphics.Matrix.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.
Applies to
Matrix(Matrix)
Create a matrix that is a (deep) copy of src
[Android.Runtime.Register(".ctor", "(Landroid/graphics/Matrix;)V", "")]
public Matrix (Android.Graphics.Matrix? src);
[<Android.Runtime.Register(".ctor", "(Landroid/graphics/Matrix;)V", "")>]
new Android.Graphics.Matrix : Android.Graphics.Matrix -> Android.Graphics.Matrix
Parameters
- src
- Matrix
The matrix to copy into this matrix
- Attributes
Remarks
Create a matrix that is a (deep) copy of src
Java documentation for android.graphics.Matrix.Matrix(android.graphics.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.
Applies to
Matrix(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected Matrix (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Graphics.Matrix : nativeint * Android.Runtime.JniHandleOwnership -> Android.Graphics.Matrix
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
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.