Funzione D3DXVec3TransformArray (D3DX10Math.h)

Nota

La libreria di utilità D3DX10 è deprecata. È consigliabile usare invece DirectXMath .

Trasforma una matrice (x, y, z, 1) in base a una determinata matrice.

Sintassi

D3DXVECTOR4* D3DXVec3TransformArray(
  _Inout_       D3DXVECTOR4 *pOut,
  _In_          UINT        OutStride,
  _In_    const D3DXVECTOR3 *pV,
  _In_          UINT        VStride,
  _In_    const D3DXMATRIX  *pM,
  _In_          UINT        n
);

Parametri

pOut [in, out]

Tipo: D3DXVECTOR4*

Puntatore alla matrice D3DXVECTOR4 risultante dall'operazione.

OutStride [in]

Tipo: UINT

Stride tra vettori nel flusso di dati di output.

pV [in]

Tipo: const D3DXVECTOR3*

Puntatore alla matrice D3DXVECTOR3 di origine.

VStride [in]

Tipo: UINT

Stride tra vettori nel flusso di dati di input.

pM [in]

Tipo: const D3DXMATRIX*

Puntatore alla struttura D3DXMATRIX di origine.

n [in]

Tipo: UINT

Numero di elementi nella matrice.

Valore restituito

Tipo: D3DXVECTOR4*

Puntatore a una matrice trasformata D3DXVECTOR4 .

Commenti

Questa funzione trasforma la matrice pV (x, y, z, 1) in base al pM della matrice.

Il valore restituito per questa funzione è lo stesso valore restituito nel parametro pOut. In questo modo, la funzione D3DXVec3TransformArray può essere usata come parametro per un'altra funzione.

Requisiti

Requisito Valore
Intestazione
D3DX10Math.h

Vedi anche

Funzioni matematiche