Computers a bisecting line of two intersecting lines.

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

Syntax

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

Parameters

line
Type: ceometric.VectorGeometry..::.Line
A line.

Return Value

Returns the bisecting line of the line and an intersecting line.

Remarks

This line, line and the bisecting line intersect in the defining Point of the bisecting line. The bisecting line may be the bisector of the acute or the obtuse intersection angle of the lines. This depends on the orientation of the direction vectors of the lines.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThe lines do not intersect.

See Also