Tests if the 3d vector is parallel 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 IsParallelTo(
	Vector3d a
)
Visual Basic (Declaration)
Public Function IsParallelTo ( _
	a As Vector3d _
) As Boolean
Visual C++
public:
bool IsParallelTo(
	Vector3d^ a
)

Return Value

Returns true if two 3d vectors are parallel, false otherwise. Returns true 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