Matrix2f 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
Matrix2f() |
Creates a new identity 2x2 matrix |
Matrix2f(Single[]) |
Creates a new matrix and sets its values from the given parameter |
Matrix2f(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
Matrix2f()
Creates a new identity 2x2 matrix
[Android.Runtime.Register(".ctor", "()V", "")]
public Matrix2f ();
- Attributes
Remarks
Creates a new identity 2x2 matrix
Java documentation for android.renderscript.Matrix2f.Matrix2f()
.
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
Matrix2f(Single[])
Creates a new matrix and sets its values from the given parameter
[Android.Runtime.Register(".ctor", "([F)V", "")]
public Matrix2f (float[]? dataArray);
[<Android.Runtime.Register(".ctor", "([F)V", "")>]
new Android.Renderscripts.Matrix2f : single[] -> Android.Renderscripts.Matrix2f
Parameters
- dataArray
- Single[]
values to set the matrix to, must be 4 floats long
- Attributes
Remarks
Creates a new matrix and sets its values from the given parameter
Java documentation for android.renderscript.Matrix2f.Matrix2f(float[])
.
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
Matrix2f(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected Matrix2f (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Renderscripts.Matrix2f : nativeint * Android.Runtime.JniHandleOwnership -> Android.Renderscripts.Matrix2f
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.