XMMATRIX::operator= function (directxmath.h)
Assigns the matrix data of one instance of XMMATRIX
to the current instance of
XMMATRIX
and returns a reference
to the current instance.
This operator assigns the matrix data of one instance of XMMATRIX to the current instance of XMMATRIX
and returns a reference
to the current
instance.
Syntax
XMMATRIX & operator=(
[ref] const XMMATRIX & M
) noexcept;
Parameters
[ref] M
Instance of XMMATRIX
whose data
is used to update the current instance.
Return value
A reference
to the current instance of XMMATRIX
, which has been updated by this operator.
Remarks
The following pseudocode demonstrates the operation of this operator:
|
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | directxmath.h |
See also
Reference