Vector3.Division 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.
Performs a division operation on a vector.
Overloads
Division(Vector3, Vector3) |
Divides the first vector by the second. |
Division(Vector3, Single) |
Divides the specified vector by a specified scalar value. |
Division(Vector3, Vector3)
- Source:
- Vector3.cs
- Source:
- Vector3.cs
- Source:
- Vector3.cs
Divides the first vector by the second.
public:
static System::Numerics::Vector3 operator /(System::Numerics::Vector3 left, System::Numerics::Vector3 right);
public static System.Numerics.Vector3 operator / (System.Numerics.Vector3 left, System.Numerics.Vector3 right);
static member ( / ) : System.Numerics.Vector3 * System.Numerics.Vector3 -> System.Numerics.Vector3
Public Shared Operator / (left As Vector3, right As Vector3) As Vector3
Parameters
- left
- Vector3
The first vector.
- right
- Vector3
The second vector.
Returns
The vector that results from dividing left
by right
.
Remarks
The Division method defines the division operation for Vector3 objects.
Applies to
Division(Vector3, Single)
- Source:
- Vector3.cs
- Source:
- Vector3.cs
- Source:
- Vector3.cs
Divides the specified vector by a specified scalar value.
public:
static System::Numerics::Vector3 operator /(System::Numerics::Vector3 value1, float value2);
public static System.Numerics.Vector3 operator / (System.Numerics.Vector3 value1, float value2);
static member ( / ) : System.Numerics.Vector3 * single -> System.Numerics.Vector3
Public Shared Operator / (value1 As Vector3, value2 As Single) As Vector3
Parameters
- value1
- Vector3
The vector.
- value2
- Single
The scalar value.
Returns
The result of the division.
Remarks
The Division method defines the division operation for Vector3 objects.