Lingua

Matrix.MapPoints Metodo

Definizione

Overload

Nome Descrizione
MapPoints(Single[])

Applicare questa matrice alla matrice di punti 2D e scrivere nuovamente i punti trasformati nella matrice

MapPoints(Single[], Single[])

Applicare questa matrice alla matrice di punti 2D specificati da src e scrivere i punti trasformati nella matrice di punti specificati da dst.

MapPoints(Single[], Int32, Single[], Int32, Int32)

Applicare questa matrice alla matrice di punti 2D specificati da src e scrivere i punti trasformati nella matrice di punti specificati da dst.

MapPoints(Single[])

Applicare questa matrice alla matrice di punti 2D e scrivere nuovamente i punti trasformati nella matrice

[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

Parametri

pts
Single[]

Matrice [x0, y0, x1, y1, ...] di punti da trasformare.

Attributi

Commenti

Applicare questa matrice alla matrice di punti 2D e scrivere nuovamente i punti trasformati nella matrice

per android.graphics.Matrix.mapPoints(float[]).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

MapPoints(Single[], Single[])

Applicare questa matrice alla matrice di punti 2D specificati da src e scrivere i punti trasformati nella matrice di punti specificati da dst.

[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

Parametri

dst
Single[]

Matrice di punti dst (coppie x,y)

src
Single[]

Matrice di punti src (coppie x,y)

Attributi

Commenti

Applicare questa matrice alla matrice di punti 2D specificati da src e scrivere i punti trasformati nella matrice di punti specificati da dst. Le due matrici rappresentano i loro "punti" come coppie di float [x, y].

per android.graphics.Matrix.mapPoints(float[], float[]).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

MapPoints(Single[], Int32, Single[], Int32, Int32)

Applicare questa matrice alla matrice di punti 2D specificati da src e scrivere i punti trasformati nella matrice di punti specificati da dst.

[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

Parametri

dst
Single[]

Matrice di punti dst (coppie x,y)

dstIndex
Int32

Indice della prima coppia [x,y] di dst floats

src
Single[]

Matrice di punti src (coppie x,y)

srcIndex
Int32

Indice della prima coppia [x,y] di float src

pointCount
Int32

Numero di punti (coppie x,y) da trasformare

Attributi

Commenti

Applicare questa matrice alla matrice di punti 2D specificati da src e scrivere i punti trasformati nella matrice di punti specificati da dst. Le due matrici rappresentano i loro "punti" come coppie di float [x, y].

per android.graphics.Matrix.mapPoints(float[], int, float[], int, int).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a