相关文章推荐
喝醉的便当  ·  数据库错误 SQL Error: ...·  12 月前    · 
博学的领带  ·  requests_html ...·  1 年前    · 
爱看球的豆腐  ·  vim - Why is Nvim ...·  1 年前    · 
睿智的牛肉面  ·  c++ - How to get ...·  1 年前    · 

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft Edge More info about Internet Explorer and Microsoft Edge

Apply this matrix to the array of 2D points, and write the transformed points back into the array

Apply this matrix to the array of 2D points, and write the transformed points back into the array

[Android.Runtime.Register("mapPoints", "([F)V", "GetMapPoints_arrayFHandler")]
public virtual void MapPoints (float[]? pts);
[<Android.Runtime.Register("mapPoints", "([F)V", "GetMapPoints_arrayFHandler")>]
abstract member MapPoints : single[] -> unit
override this.MapPoints : single[] -> unit

Parameters

Remarks

Apply this matrix to the array of 2D points, and write the transformed points back into the array

Java documentation for android.graphics.Matrix.mapPoints(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.

[Android.Runtime.Register("mapPoints", "([F[F)V", "GetMapPoints_arrayFarrayFHandler")]
public virtual void MapPoints (float[]? dst, float[]? src);
[<Android.Runtime.Register("mapPoints", "([F[F)V", "GetMapPoints_arrayFarrayFHandler")>]
abstract member MapPoints : single[] * single[] -> unit
override this.MapPoints : single[] * single[] -> unit

Parameters

Remarks

Apply this matrix to the array of 2D points specified by src, and write the transformed points into the array of points specified by dst. The two arrays represent their "points" as pairs of floats [x, y].

Java documentation for android.graphics.Matrix.mapPoints(float[], 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.

[Android.Runtime.Register("mapPoints", "([FI[FII)V", "GetMapPoints_arrayFIarrayFIIHandler")]
public virtual void MapPoints (float[]? dst, int dstIndex, float[]? src, int srcIndex, int pointCount);
[<Android.Runtime.Register("mapPoints", "([FI[FII)V", "GetMapPoints_arrayFIarrayFIIHandler")>]
abstract member MapPoints : single[] * int * single[] * int * int -> unit
override this.MapPoints : single[] * int * single[] * int * int -> unit

Parameters

Remarks

Apply this matrix to the array of 2D points specified by src, and write the transformed points into the array of points specified by dst. The two arrays represent their "points" as pairs of floats [x, y].

Java documentation for android.graphics.Matrix.mapPoints(float[], int, float[], int, int) .

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.