Quaternion.Addition(Quaternion, Quaternion) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds each element in one quaternion with its corresponding element in a second quaternion.
public:
static System::Numerics::Quaternion operator +(System::Numerics::Quaternion value1, System::Numerics::Quaternion value2);
public static System.Numerics.Quaternion operator + (System.Numerics.Quaternion value1, System.Numerics.Quaternion value2);
static member ( + ) : System.Numerics.Quaternion * System.Numerics.Quaternion -> System.Numerics.Quaternion
Public Shared Operator + (value1 As Quaternion, value2 As Quaternion) As Quaternion
Parameters
- value1
- Quaternion
The first quaternion.
- value2
- Quaternion
The second quaternion.
Returns
The quaternion that contains the summed values of value1
and value2
.
Remarks
The Addition method defines the operation of the addition operator for Quaternion objects.
Applies to
Samarbejd med os på GitHub
Kilden til dette indhold kan findes på GitHub, hvor du også kan oprette og gennemse problemer og pullanmodninger. Du kan få flere oplysninger i vores vejledning til bidragydere.