FitDataIsEqualTo(FitData,
Tolerance) Method
|
Checks whether the passed object is equal to
this object within the specified tolerance.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public bool IsEqualTo(
FitData other,
Tolerance tolerance
)
Public Function IsEqualTo (
other As FitData,
tolerance As Tolerance
) As Boolean
public:
bool IsEqualTo(
FitData other,
Tolerance tolerance
)
member IsEqualTo :
other : FitData *
tolerance : Tolerance -> bool
Parameters
- other FitData
- [in] Other fit data object to check for equality.
- tolerance Tolerance
- [in] Tolerance for comparison.
Return Value
Boolean
true if all the following conditions are
met: * Fit spline degrees are equal; * Both splines have present or
absent tangents at the endpoints; * Fit tolerance values are equal;
* Fit tolerance values are equal; * Start tqngent vectors are
equal; * End tqngent vectors are equal; * Collections of fit points
are equal; Otherwise, the method returns
false.
See Also