XMUDECN4::operator=(uint32_t) function (directxpackedvector.h)
Assigns the vector component data packed in an instance of uint32_t
to the current
instance of XMUDECN4
.
This operator assigns the vector component data packed in an instance of uint32_t
to
the current instance of XMUDECN4.
Note This operator is only available under C++.
Syntax
XMUDECN4 & operator=(
uint32_t Packed
) noexcept;
Parameters
Packed
The values of four vector components in a packed format.
Return value
The current instance of XMUDECN4
whose vector component data has been
updated to the component values packed in the uint32_t
instance specified by
the Packed argument.
Remarks
The format of Packed is:
- The first 120 bits (bits 0-9) of Packed assigned, as an unsigned integer, to the x member of the current instance of XMCOLOR.
-
The second 10 bits (bits 10-19) of Packed assigned, as an unsigned
integer, to the y member of the current instance of
XMUDECN4
. -
The third 10 bits (bits 20-29) of Packed assigned, as an unsigned
integer, to the z member of the current instance of
XMUDECN4
. -
The last 2 bits (bits 30-31) of Packed assigned, as an unsigned
integer, to the w member of the current instance of
XMUDECN4
.
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | directxpackedvector.h |
See also
Reference