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