Tests if the 3d vector is linearly independent to a second 3d vector.

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

Syntax

C#
public bool IsIndependentTo(
	Vector3d a
)
Visual Basic (Declaration)
Public Function IsIndependentTo ( _
	a As Vector3d _
) As Boolean
Visual C++
public:
bool IsIndependentTo(
	Vector3d^ a
)

Return Value

Returns true if two 3d vectors a linearly independent, false otherwise. Returns false if the length of one of the two vectors is zero.

Remarks

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

See Also