Vector.Subtraction(Vector, Vector) 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.
Subtracts one specified vector from another.
public:
static System::Windows::Vector operator -(System::Windows::Vector vector1, System::Windows::Vector vector2);
public static System.Windows.Vector operator - (System.Windows.Vector vector1, System.Windows.Vector vector2);
static member ( - ) : System.Windows.Vector * System.Windows.Vector -> System.Windows.Vector
Public Shared Operator - (vector1 As Vector, vector2 As Vector) As Vector
Parameters
- vector1
- Vector
The vector from which vector2
is subtracted.
- vector2
- Vector
The vector to subtract from vector1
.
Returns
The difference between vector1
and vector2
.
Examples
The following example shows how to use this operator (-) to subtract a Vector structure from a Vector structure.
private Vector overloadedSubtractionOperatorExample()
{
Vector vector1 = new Vector(20, 30);
Vector vector2 = new Vector(45, 70);
// Subtract vector2 from vector1 using the overloaded
// "-" operator.
// vector Result is equal to (-25, -40).
Vector vectorResult = vector1 - vector2;
return vectorResult;
}
Private Function overloadedSubtractionOperatorExample() As Vector
Dim vector1 As New Vector(20, 30)
Dim vector2 As New Vector(45, 70)
' Subtract vector2 from vector1 using the overloaded
' "-" operator.
' vector Result is equal to (-25, -40).
Dim vectorResult As Vector = vector1 - vector2
Return vectorResult
End Function
Applies to
See also
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.