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(
	Edge edge
)
Visual Basic (Declaration)
Public Function IsCollinearTo ( _
	edge As Edge _
) As Boolean
Visual C++
public:
bool IsCollinearTo(
	Edge^ edge
)

Parameters

edge
Type: ceometric.VectorGeometry..::.Edge
An edge.

Return Value

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

Returns true if edge has zero length.

Remarks

The point is collinear to edge if the point and edge lie on the same line.

See Also