Click or drag to resize
Vector2FCollinear Method (Vector2F, Vector2F, Vector2F)
Determines if three vectors are collinear (ie. on a straight line).

Namespace: Slash.Math.Algebra.Vectors
Assembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntax
public static bool Collinear(
	ref Vector2F a,
	ref Vector2F b,
	ref Vector2F c
)

Parameters

a
Type: Slash.Math.Algebra.VectorsVector2F
First vector.
b
Type: Slash.Math.Algebra.VectorsVector2F
Second vector.
c
Type: Slash.Math.Algebra.VectorsVector2F
Third vector.

Return Value

Type: Boolean
True if the three vectors are collinear; otherwise, false.
See Also