Vector3::Subtraction Operator

Subtracts the second vector from the first.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
static Vector3 operator -(
	Vector3 left, 
	Vector3 right
)

Parameters

left
Type: System.Numerics::Vector3

The first vector.

right
Type: System.Numerics::Vector3

The second vector.

Return Value

Type: System.Numerics::Vector3
The vector that results from subtracting right from left.

The Subtraction method defines the subtraction operation for Vector3 objects.

Show: