 | Vector3FEquality Operator |
Indicates if the two passed vectors are equal.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static bool operator ==(
Vector3F a,
Vector3F b
)
Public Shared Operator = (
a As Vector3F,
b As Vector3F
) As Boolean
public:
static bool operator ==(
Vector3F a,
Vector3F b
)
static let inline (=)
a : Vector3F *
b : Vector3F : bool
Parameters
- a
- Type: Slash.Math.Algebra.VectorsVector3F
First vector. - b
- Type: Slash.Math.Algebra.VectorsVector3F
Second vector.
Return Value
Type:
Boolean True if the two passed vectors are equal; otherwise, false.
See Also