XMINT4::XMINT4(constint32_t*) function (directxmath.h)
Initializes a new instance of XMINT4
from a four element int32_t
array
argument.
This constructor initializes a new instance of XMINT4 from a from
a four element int32_t
array argument.
Note This constructor is only available under C++.
Syntax
void XMINT4(
const int32_t *pArray
) noexcept;
Parameters
pArray
Four element int32_t
array containing the values used to initialize the
four components of a new instance of XMINT4
.
Return value
None
Remarks
The following pseudocode demonstrates the operation of this constructor:
XMINT4 instance;
instance.x = pArray[0];
instance.y = pArray[1];
instance.z = pArray[2];
instance.w = pArray[3];
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | directxmath.h |
See also
Reference