XMUSHORT2::XMUSHORT2(uint16_t,uint16_t) function (directxpackedvector.h)

Initializes a new instance of XMUSHORT2 from two uint16_t arguments.

This constructor initializes a new instance of XMUSHORT2 from two uint16_t arguments.

Note  This constructor is only available under C++.
 

Syntax

void XMUSHORT2(
  uint16_t _x,
  uint16_t _y
) noexcept;

Parameters

_x

Value of the x-coordinate of the vector, the x member of the new XMUSHORT2 instance.

_y

Value of the y-coordinate of the vector, the y member of the new XMUSHORT2 instance.

Return value

None

Remarks

The following pseudocode demonstrates the operation of this constructor:


	XMUSHORT2 instance;

	instance.x = _x;
	instance.y = _y;
    

Requirements

Requirement Value
Target Platform Windows
Header directxpackedvector.h

See also

Reference

XMUSHORT2

XMUSHORT2 Constructors