Skip to content

Latest commit

 

History

History
90 lines (56 loc) · 1.79 KB

d3dxmatrixtranspose.md

File metadata and controls

90 lines (56 loc) · 1.79 KB
description ms.assetid title ms.topic ms.date topic_type api_name api_type api_location
D3DXMatrixTranspose function (D3dx9math.h) - Returns the matrix transpose of a matrix.
0ba9682f-3dd6-48b2-82b1-6e34e8ce5452
D3DXMatrixTranspose function (D3dx9math.h)
reference
05/31/2018
APIRef
kbSyntax
D3DXMatrixTranspose
LibDef
d3dx9.lib
d3dx9.dll

D3DXMatrixTranspose function (D3dx9math.h)

Note

The D3DX utility library is deprecated. We recommend that you use DirectXMath instead.

Returns the matrix transpose of a matrix.

Syntax

D3DXMATRIX* D3DXMatrixTranspose(
  _Inout_       D3DXMATRIX *pOut,
  _In_    const D3DXMATRIX *pM
);

Parameters

pOut [in, out]

Type: D3DXMATRIX*

Pointer to the D3DXMATRIX structure that is the result of the operation.

pM [in]

Type: const D3DXMATRIX*

Pointer to the source D3DXMATRIX structure.

Return value

Type: D3DXMATRIX*

Pointer to the D3DXMATRIX structure that is the matrix transpose of the matrix.

Remarks

The return value for this function is the same value returned in the pOut parameter. In this way, the D3DXMatrixTranspose function can be used as a parameter for another function.

Requirements

Requirement Value
Header
D3dx9math.h
Library
D3dx9.lib

See also

Math Functions