FitDataIsEqualTo(FitData)
Method
|
Checks whether the passed object is equal to
this object within global tolerance.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public bool IsEqualTo(
FitData other
)
Public Function IsEqualTo (
other As FitData
) As Boolean
public:
bool IsEqualTo(
FitData other
)
member IsEqualTo :
other : FitData -> bool
Parameters
- other FitData
- [in] Other fit data object to check for equality.
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