XMFLOAT4::operator=(XMFLOAT4&&) function (directxmath.h)

Assigns the vector component data from one instance of XMFLOAT4 to the current instance of XMFLOAT4.

This operator assigns the vector component data from one instance of XMFLOAT4 to the current instance of XMFLOAT4.

Note  This operator is only available under C++.

Syntax

XMFLOAT4 & operator=(
  XMFLOAT4 && unnamedParam1
);

Parameters

unnamedParam1

Instance of XMFLOAT4 used to update the current XMFLOAT4 structure.

Return value

The current instance of XMFLOAT4 whose vector component data has been updated to match those of the XMFLOAT4 instance specified by the Float4 argument.

Requirements

Requirement Value
Target Platform Windows
Header directxmath.h

See also

XMFLOAT4

XMFLOAT4 Operators