 | Vector3FAddition Operator |
Sums the components of the passed vectors and returns the resulting vector.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static Vector3F operator +(
Vector3F a,
Vector3F b
)
Public Shared Operator + (
a As Vector3F,
b As Vector3F
) As Vector3F
public:
static Vector3F operator +(
Vector3F a,
Vector3F b
)
static let inline (+)
a : Vector3F *
b : Vector3F : Vector3F
Parameters
- a
- Type: Slash.Math.Algebra.VectorsVector3F
First vector. - b
- Type: Slash.Math.Algebra.VectorsVector3F
Second vector.
Return Value
Type:
Vector3F Vector which components are the sum of the respective components of the two passed vectors.
See Also