Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Initializes a new instance of XMINT3
from a three element int32_t
array argument.
This constructor initializes a new instance of XMINT3 from a from a three element
int32_t
array argument.
Syntax
void XMINT3(
const int32_t *pArray
) noexcept;
Parameters
pArray
Three element int32_t
array containing the values used to initialize the three components of a new instance of
XMINT3
.
Return value
None
Remarks
The following pseudocode demonstrates the operation of this constructor:
XMINT3 instance;
instance.x = pArray[0];
instance.y = pArray[1];
instance.z = pArray[2];
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | directxmath.h |
See also
Reference