Tests if an object is collinear to the point.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public bool IsCollinearTo(
	Line line
)
Visual Basic (Declaration)
Public Function IsCollinearTo ( _
	line As Line _
) As Boolean
Visual C++
public:
bool IsCollinearTo(
	Line^ line
)

Return Value

Returns true if the point and line are collinear, false otherwise.

The point is collinear to line if it lies on line. This test is equal to the Contains(Point) - test.

Remarks

The result of this test depends on the settings of the AbsoluteEpsilon variable.

See Also