Click or drag to resize
Accord.NET (logo)

Vector3Addition Operator (Vector3, Vector3)

Adds corresponding coordinates of two vectors.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Vector3 operator +(
	Vector3 vector1,
	Vector3 vector2
)
Request Example View Source

Parameters

vector1
Type: Accord.MathVector3
The vector to add to.
vector2
Type: Accord.MathVector3
The vector to add to the first vector.

Return Value

Type: Vector3
Returns a vector which coordinates are equal to sum of corresponding coordinates of the two specified vectors.
See Also