Android.Graphics.Matrix.MapVectors Method
Apply this matrix to the array of 2D vectors specified by src, and write the transformed vectors into the array of vectors specified by dst.

Syntax

[Android.Runtime.Register("mapVectors", "([FI[FII)V", "GetMapVectors_arrayFIarrayFIIHandler")]
public virtual void MapVectors (float[] dst, int dstIndex, float[] src, int srcIndex, int vectorCount)

Parameters

dst
The array of dst vectors (x,y pairs)
dstIndex
The index of the first [x,y] pair of dst floats
src
The array of src vectors (x,y pairs)
srcIndex
The index of the first [x,y] pair of src floats
vectorCount
The number of vectors (x,y pairs) to transform

Remarks

Apply this matrix to the array of 2D vectors specified by src, and write the transformed vectors into the array of vectors specified by dst. The two arrays represent their "vectors" as pairs of floats [x, y]. Note: this method does not apply the translation associated with the matrix. Use Matrix.MapPoints(Single[], System.Int32, System.Int32, System.Int32, System.Int32) if you want the translation to be applied.

[Android Documentation]

Requirements

Namespace: Android.Graphics
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1