Click or drag to resize
GeVectorIsParallelTo Method
Returns True if this vector is parallel to specified vector, otherwise returns False.

Namespace: FDF.Common.Geometries
Assembly: FDF.Common (in FDF.Common.dll) Version: 3.0.0.0
Syntax
public bool IsParallelTo(
	GeVector other
)

Parameters

other
Type: FDF.Common.GeometriesGeVector

Return Value

Type: Boolean
Remarks
Checks if this vector is parallel to the vector vec. Namely, it checks if after normalization (and negation, in the case of negative dot product with the vector vec), this vector is within the distance tol.equalVector() from the normalization of the vector vec. Returns Adesk::kTrue if this condition is met and Adesk::kFalse otherwise.
See Also