FitDataInequality
Operator
|
Inequality operator for the FitData class.
Checks whether objects are not equal.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public static bool operator !=(
FitData a,
FitData b
)
Public Shared Operator <> (
a As FitData,
b As FitData
) As Boolean
public:
static bool operator !=(
FitData a,
FitData b
)
static let inline (<>)
a : FitData *
b : FitData : bool
Parameters
- a FitData
- [in] Left object to check.
- b FitData
- [in] Right object to check.
Return Value
Boolean
true if at least one of the following
conditions fails: * 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