missing implementation of fuzzyIsBoundary
This commit is contained in:
parent
293055ac06
commit
d6dcf0a3d1
@ -216,6 +216,12 @@ bool QskIntervalF::fuzzyContains( const QskIntervalF& interval ) const
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool QskIntervalF::fuzzyIsBoundary( qreal value ) const
|
||||||
|
{
|
||||||
|
return qskFuzzyCompare( value, m_lowerBound )
|
||||||
|
|| qskFuzzyCompare( value, m_upperBound );
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef QT_NO_DEBUG_STREAM
|
#ifndef QT_NO_DEBUG_STREAM
|
||||||
|
|
||||||
#include <qdebug.h>
|
#include <qdebug.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user