XMUINT3::XMUINT3(uint32_t,uint32_t,uint32_t) function (directxmath.h)

Initializes a new instance of XMUINT3 from three uint32_t arguments.

This constructor initializes a new instance of XMUINT3 from three uint32_t arguments.

Note  This constructor is only available under C++.
 

Syntax

void XMUINT3(
  uint32_t _x,
  uint32_t _y,
  uint32_t _z
) noexcept;

Parameters

_x

Value to be stored in the x-component (the x member) of the new instance of XMUINT3.

_y

Value to be stored in the y-component (the y member) of the new instance of XMUINT3.

_z

Value to be stored in the z-component (the z member) of the new instance of XMUINT3.

Return value

None

Remarks

The following pseudocode demonstrates the operation of this constructor:


	XMUINT3 instance;
	instance.x =  _x;
	instance.y =  _y;
	instance.z =  _z;
    

Requirements

Requirement Value
Target Platform Windows
Header directxmath.h

See also

Reference

XMUINT3

XMUINT3 Constructors