| Vector2FIsParallel Method |
Checks if this vector is parallel or anti-parallel to the passed one.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntax public bool IsParallel(
Vector2F other
)
Public Function IsParallel (
other As Vector2F
) As Boolean
public:
bool IsParallel(
Vector2F other
)
member IsParallel :
other : Vector2F -> bool
Parameters
- other
- Type: Slash.Math.Algebra.VectorsVector2F
Vector to check.
Return Value
Type:
Boolean True if both vectors are parallel or anti-parallel, else false.
See Also