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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.