XMUINT3::XMUINT3(constuint32_t*) function (directxmath.h)

Initializes a new instance of XMUINT3 from a three element uint32_t array argument.

This constructor initializes a new instance of XMUINT3 from a three-element uint32_t array argument.

Note  This constructor is only available under C++.

Syntax

void XMUINT3(
  const uint32_t *pArray
) noexcept;

Parameters

pArray

Three-element uint32_t array containing the values used to initialize the three components of a new instance of XMUINT3.

Return value

None

Remarks

The following pseudocode demonstrates the operation of this constructor:

XMUINT3 instance;
instance.x =  pArray[0];
instance.y =  pArray[1];
instance.z =  pArray[2];

Requirements

Requirement Value
Target Platform Windows
Header directxmath.h

See also

XMUINT3

XMUINT3 Constructors