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