XMUBYTEN2::XMUBYTEN2(constuint8_t*) function (directxpackedvector.h)

Initializes a new instance of XMUBYTEN2 from a two-element uint8_t array argument.

This constructor initializes a new instance of XMUBYTEN2 from a two-element uint8_t array argument.

Note  This constructor is only available with C++.

Syntax

void XMUBYTEN2(
  const uint8_t *pArray
) noexcept;

Parameters

pArray

Two-element uint8_t array containing the values used to initialize the two components of a new instance of XMUBYTEN2.

Return value

None

Remarks

Input values are not normalized. The following pseudocode demonstrates the operation of this constructor:

XMUBYTEN2 instance;
instance.x = pArray[0];
instance.y = pArray[1];

Requirements

Requirement Value
Target Platform Windows
Header directxpackedvector.h

See also

XMUBYTEN2

XMUBYTEN2 Constructors