True if two lines are considered equal.

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

Syntax

C#
public static bool operator ==(
	Line left,
	Line right
)
Visual Basic (Declaration)
Public Shared Operator = ( _
	left As Line, _
	right As Line _
) As Boolean
Visual C++
public:
static bool operator ==(
	Line^ left, 
	Line^ right
)

Return Value

Returns true if two lines are considered equal, false otherwise.

Remarks

Two lines are considered equal if they contain the same points. This is, two equal lines may have a different defining point and a different direction vector.

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

See Also