Computes the bisecting vector of two 3d vectors.

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

Syntax

C#
public static Vector3d Bisector(
	Vector3d a,
	Vector3d b
)
Visual Basic (Declaration)
Public Shared Function Bisector ( _
	a As Vector3d, _
	b As Vector3d _
) As Vector3d
Visual C++
public:
static Vector3d^ Bisector(
	Vector3d^ a, 
	Vector3d^ b
)

Return Value

Returns the 3d vector that bisects a and b.

Remarks

The bisecting vector may be the bisector of the acute or the obtuse intersection angle of the vectors. This depends on the orientation of the vectors.

See Also