XMUINT4::XMUINT4(uint32_t,uint32_t,uint32_t,uint32_t) function (directxmath.h)
Initializes a new instance of XMUINT4
from four uint32_t
arguments.
This constructor initializes a new instance of XMUINT4 from four
uint32_t
arguments.
Note This constructor is only available under C++.
Syntax
void XMUINT4(
uint32_t _x,
uint32_t _y,
uint32_t _z,
uint32_t _w
) noexcept;
Parameters
_x
Value of the x-coordinate of the vector, the x member of the new
XMUINT4
instance.
_y
Value of the y-coordinate of the vector, the y member of the new
XMUINT4
instance.
_z
Value of the z-coordinate of the vector, the z member of the new
XMUINT4
instance.
_w
Value of the w-coordinate of the vector, the w member of the new
XMUINT4
instance.
Return value
None
Remarks
The following pseudocode demonstrates the operation of this constructor:
XMUINT4 instance;
instance.x = _x;
instance.y = _y;
instance.z = _z;
instance.w = _w;
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | directxmath.h |
See also
Reference