Vector3 Operators |
The Vector3 type exposes the following members.
| Name | Description | |
|---|---|---|
| Addition |
Adds two vectors.
| |
| Division(Double, Vector3) |
Divides a vector with an scalar.
| |
| Division(Vector3, Vector3) |
Divides two vectors component by component.
| |
| Division(Vector3, Double) |
Divides an scalar with a vector.
| |
| Equality |
Check if the components of two vectors are equal.
| |
| Inequality |
Check if the components of two vectors are different.
| |
| Multiply(Double, Vector3) |
Multiplies a scalar with a vector (same as u*a, commutative property).
| |
| Multiply(Vector3, Vector3) |
Multiplies two vectors component by component.
| |
| Multiply(Vector3, Double) |
Multiplies a vector with an scalar (same as a*u, commutative property).
| |
| Subtraction |
Subtracts two vectors.
| |
| UnaryNegation |
Negates a vector.
|