123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943 |
- /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
- * Qwt Widget Library
- * Copyright (C) 1997 Josef Wilgen
- * Copyright (C) 2002 Uwe Rathmann
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the Qwt License, Version 1.0
- *****************************************************************************/
- #include "qwt_scale_engine.h"
- #include "qwt_math.h"
- #include "qwt_scale_map.h"
- #include <qalgorithms.h>
- #include <qmath.h>
- #if QT_VERSION < 0x040601
- #define qFabs(x) ::fabs(x)
- #define qExp(x) ::exp(x)
- #endif
- static const double _eps = 1.0e-6;
- /*!
- Ceil a value, relative to an interval
- \param value Value to ceil
- \param intervalSize Interval size
- \sa floorEps()
- */
- double QwtScaleArithmetic::ceilEps( double value,
- double intervalSize )
- {
- const double eps = _eps * intervalSize;
- value = ( value - eps ) / intervalSize;
- return qCeil( value ) * intervalSize;
- }
- /*!
- Floor a value, relative to an interval
- \param value Value to floor
- \param intervalSize Interval size
- \sa floorEps()
- */
- double QwtScaleArithmetic::floorEps( double value, double intervalSize )
- {
- const double eps = _eps * intervalSize;
- value = ( value + eps ) / intervalSize;
- return qFloor( value ) * intervalSize;
- }
- /*!
- \brief Divide an interval into steps
- \f$stepSize = (intervalSize - intervalSize * 10e^{-6}) / numSteps\f$
- \param intervalSize Interval size
- \param numSteps Number of steps
- \return Step size
- */
- double QwtScaleArithmetic::divideEps( double intervalSize, double numSteps )
- {
- if ( numSteps == 0.0 || intervalSize == 0.0 )
- return 0.0;
- return ( intervalSize - ( _eps * intervalSize ) ) / numSteps;
- }
- /*!
- Find the smallest value out of {1,2,5}*10^n with an integer number n
- which is greater than or equal to x
- \param x Input value
- */
- double QwtScaleArithmetic::ceil125( double x )
- {
- if ( x == 0.0 )
- return 0.0;
- const double sign = ( x > 0 ) ? 1.0 : -1.0;
- const double lx = ::log10( qFabs( x ) );
- const double p10 = qFloor( lx );
- double fr = qPow( 10.0, lx - p10 );
- if ( fr <= 1.0 )
- fr = 1.0;
- else if ( fr <= 2.0 )
- fr = 2.0;
- else if ( fr <= 5.0 )
- fr = 5.0;
- else
- fr = 10.0;
- return sign * fr * qPow( 10.0, p10 );
- }
- /*!
- \brief Find the largest value out of {1,2,5}*10^n with an integer number n
- which is smaller than or equal to x
- \param x Input value
- */
- double QwtScaleArithmetic::floor125( double x )
- {
- if ( x == 0.0 )
- return 0.0;
- double sign = ( x > 0 ) ? 1.0 : -1.0;
- const double lx = ::log10( qFabs( x ) );
- const double p10 = qFloor( lx );
- double fr = qPow( 10.0, lx - p10 );
- if ( fr >= 10.0 )
- fr = 10.0;
- else if ( fr >= 5.0 )
- fr = 5.0;
- else if ( fr >= 2.0 )
- fr = 2.0;
- else
- fr = 1.0;
- return sign * fr * qPow( 10.0, p10 );
- }
- class QwtScaleEngine::PrivateData
- {
- public:
- PrivateData():
- attributes( QwtScaleEngine::NoAttribute ),
- lowerMargin( 0.0 ),
- upperMargin( 0.0 ),
- referenceValue( 0.0 )
- {
- }
- int attributes; // scale attributes
- double lowerMargin; // margins
- double upperMargin;
- double referenceValue; // reference value
- };
- //! Constructor
- QwtScaleEngine::QwtScaleEngine()
- {
- d_data = new PrivateData;
- }
- //! Destructor
- QwtScaleEngine::~QwtScaleEngine ()
- {
- delete d_data;
- }
- /*!
- \return the margin at the lower end of the scale
- The default margin is 0.
- \sa setMargins()
- */
- double QwtScaleEngine::lowerMargin() const
- {
- return d_data->lowerMargin;
- }
- /*!
- \return the margin at the upper end of the scale
- The default margin is 0.
- \sa setMargins()
- */
- double QwtScaleEngine::upperMargin() const
- {
- return d_data->upperMargin;
- }
- /*!
- \brief Specify margins at the scale's endpoints
- \param lower minimum distance between the scale's lower boundary and the
- smallest enclosed value
- \param upper minimum distance between the scale's upper boundary and the
- greatest enclosed value
- Margins can be used to leave a minimum amount of space between
- the enclosed intervals and the boundaries of the scale.
- \warning
- \li QwtLog10ScaleEngine measures the margins in decades.
- \sa upperMargin(), lowerMargin()
- */
- void QwtScaleEngine::setMargins( double lower, double upper )
- {
- d_data->lowerMargin = qMax( lower, 0.0 );
- d_data->upperMargin = qMax( upper, 0.0 );
- }
- /*!
- Calculate a step size for an interval size
- \param intervalSize Interval size
- \param numSteps Number of steps
- \return Step size
- */
- double QwtScaleEngine::divideInterval(
- double intervalSize, int numSteps ) const
- {
- if ( numSteps <= 0 )
- return 0.0;
- double v = QwtScaleArithmetic::divideEps( intervalSize, numSteps );
- return QwtScaleArithmetic::ceil125( v );
- }
- /*!
- Check if an interval "contains" a value
- \param interval Interval
- \param value Value
- \sa QwtScaleArithmetic::compareEps()
- */
- bool QwtScaleEngine::contains(
- const QwtInterval &interval, double value ) const
- {
- if ( !interval.isValid() )
- return false;
- if ( qwtFuzzyCompare( value, interval.minValue(), interval.width() ) < 0 )
- return false;
- if ( qwtFuzzyCompare( value, interval.maxValue(), interval.width() ) > 0 )
- return false;
- return true;
- }
- /*!
- Remove ticks from a list, that are not inside an interval
- \param ticks Tick list
- \param interval Interval
- \return Stripped tick list
- */
- QList<double> QwtScaleEngine::strip( const QList<double>& ticks,
- const QwtInterval &interval ) const
- {
- if ( !interval.isValid() || ticks.count() == 0 )
- return QList<double>();
- if ( contains( interval, ticks.first() )
- && contains( interval, ticks.last() ) )
- {
- return ticks;
- }
- QList<double> strippedTicks;
- for ( int i = 0; i < ( int )ticks.count(); i++ )
- {
- if ( contains( interval, ticks[i] ) )
- strippedTicks += ticks[i];
- }
- return strippedTicks;
- }
- /*!
- \brief Build an interval for a value
- In case of v == 0.0 the interval is [-0.5, 0.5],
- otherwide it is [0.5 * v, 1.5 * v]
- */
- QwtInterval QwtScaleEngine::buildInterval( double v ) const
- {
- const double delta = ( v == 0.0 ) ? 0.5 : qAbs( 0.5 * v );
- return QwtInterval( v - delta, v + delta );
- }
- /*!
- Change a scale attribute
- \param attribute Attribute to change
- \param on On/Off
- \sa Attribute, testAttribute()
- */
- void QwtScaleEngine::setAttribute( Attribute attribute, bool on )
- {
- if ( on )
- d_data->attributes |= attribute;
- else
- d_data->attributes &= ( ~attribute );
- }
- /*!
- Check if a attribute is set.
- \param attribute Attribute to be tested
- \sa Attribute, setAttribute()
- */
- bool QwtScaleEngine::testAttribute( Attribute attribute ) const
- {
- return bool( d_data->attributes & attribute );
- }
- /*!
- Change the scale attribute
- \param attributes Set scale attributes
- \sa Attribute, attributes()
- */
- void QwtScaleEngine::setAttributes( int attributes )
- {
- d_data->attributes = attributes;
- }
- /*!
- Return the scale attributes
- \sa Attribute, setAttributes(), testAttribute()
- */
- int QwtScaleEngine::attributes() const
- {
- return d_data->attributes;
- }
- /*!
- \brief Specify a reference point
- \param r new reference value
- The reference point is needed if options IncludeReference or
- Symmetric are active. Its default value is 0.0.
- \sa Attribute
- */
- void QwtScaleEngine::setReference( double r )
- {
- d_data->referenceValue = r;
- }
- /*!
- \return the reference value
- \sa setReference(), setAttribute()
- */
- double QwtScaleEngine::reference() const
- {
- return d_data->referenceValue;
- }
- /*!
- Return a transformation, for linear scales
- */
- QwtScaleTransformation *QwtLinearScaleEngine::transformation() const
- {
- return new QwtScaleTransformation( QwtScaleTransformation::Linear );
- }
- /*!
- Align and divide an interval
- \param maxNumSteps Max. number of steps
- \param x1 First limit of the interval (In/Out)
- \param x2 Second limit of the interval (In/Out)
- \param stepSize Step size (Out)
- \sa setAttribute()
- */
- void QwtLinearScaleEngine::autoScale( int maxNumSteps,
- double &x1, double &x2, double &stepSize ) const
- {
- QwtInterval interval( x1, x2 );
- interval = interval.normalized();
- interval.setMinValue( interval.minValue() - lowerMargin() );
- interval.setMaxValue( interval.maxValue() + upperMargin() );
- if ( testAttribute( QwtScaleEngine::Symmetric ) )
- interval = interval.symmetrize( reference() );
- if ( testAttribute( QwtScaleEngine::IncludeReference ) )
- interval = interval.extend( reference() );
- if ( interval.width() == 0.0 )
- interval = buildInterval( interval.minValue() );
- stepSize = divideInterval( interval.width(), qMax( maxNumSteps, 1 ) );
- if ( !testAttribute( QwtScaleEngine::Floating ) )
- interval = align( interval, stepSize );
- x1 = interval.minValue();
- x2 = interval.maxValue();
- if ( testAttribute( QwtScaleEngine::Inverted ) )
- {
- qSwap( x1, x2 );
- stepSize = -stepSize;
- }
- }
- /*!
- \brief Calculate a scale division
- \param x1 First interval limit
- \param x2 Second interval limit
- \param maxMajSteps Maximum for the number of major steps
- \param maxMinSteps Maximum number of minor steps
- \param stepSize Step size. If stepSize == 0, the scaleEngine
- calculates one.
- \sa QwtScaleEngine::stepSize(), QwtScaleEngine::subDivide()
- */
- QwtScaleDiv QwtLinearScaleEngine::divideScale( double x1, double x2,
- int maxMajSteps, int maxMinSteps, double stepSize ) const
- {
- QwtInterval interval = QwtInterval( x1, x2 ).normalized();
- if ( interval.width() <= 0 )
- return QwtScaleDiv();
- stepSize = qAbs( stepSize );
- if ( stepSize == 0.0 )
- {
- if ( maxMajSteps < 1 )
- maxMajSteps = 1;
- stepSize = divideInterval( interval.width(), maxMajSteps );
- }
- QwtScaleDiv scaleDiv;
- if ( stepSize != 0.0 )
- {
- QList<double> ticks[QwtScaleDiv::NTickTypes];
- buildTicks( interval, stepSize, maxMinSteps, ticks );
- scaleDiv = QwtScaleDiv( interval, ticks );
- }
- if ( x1 > x2 )
- scaleDiv.invert();
- return scaleDiv;
- }
- /*!
- \brief Calculate ticks for an interval
- \param interval Interval
- \param stepSize Step size
- \param maxMinSteps Maximum number of minor steps
- \param ticks Arrays to be filled with the calculated ticks
- \sa buildMajorTicks(), buildMinorTicks
- */
- void QwtLinearScaleEngine::buildTicks(
- const QwtInterval& interval, double stepSize, int maxMinSteps,
- QList<double> ticks[QwtScaleDiv::NTickTypes] ) const
- {
- const QwtInterval boundingInterval =
- align( interval, stepSize );
- ticks[QwtScaleDiv::MajorTick] =
- buildMajorTicks( boundingInterval, stepSize );
- if ( maxMinSteps > 0 )
- {
- buildMinorTicks( ticks[QwtScaleDiv::MajorTick], maxMinSteps, stepSize,
- ticks[QwtScaleDiv::MinorTick], ticks[QwtScaleDiv::MediumTick] );
- }
- for ( int i = 0; i < QwtScaleDiv::NTickTypes; i++ )
- {
- ticks[i] = strip( ticks[i], interval );
- // ticks very close to 0.0 are
- // explicitely set to 0.0
- for ( int j = 0; j < ( int )ticks[i].count(); j++ )
- {
- if ( qwtFuzzyCompare( ticks[i][j], 0.0, stepSize ) == 0 )
- ticks[i][j] = 0.0;
- }
- }
- }
- /*!
- \brief Calculate major ticks for an interval
- \param interval Interval
- \param stepSize Step size
- \return Calculated ticks
- */
- QList<double> QwtLinearScaleEngine::buildMajorTicks(
- const QwtInterval &interval, double stepSize ) const
- {
- int numTicks = qRound( interval.width() / stepSize ) + 1;
- if ( numTicks > 10000 )
- numTicks = 10000;
- QList<double> ticks;
- ticks += interval.minValue();
- for ( int i = 1; i < numTicks - 1; i++ )
- ticks += interval.minValue() + i * stepSize;
- ticks += interval.maxValue();
- return ticks;
- }
- /*!
- \brief Calculate minor/medium ticks for major ticks
- \param majorTicks Major ticks
- \param maxMinSteps Maximum number of minor steps
- \param stepSize Step size
- \param minorTicks Array to be filled with the calculated minor ticks
- \param mediumTicks Array to be filled with the calculated medium ticks
- */
- void QwtLinearScaleEngine::buildMinorTicks(
- const QList<double>& majorTicks,
- int maxMinSteps, double stepSize,
- QList<double> &minorTicks,
- QList<double> &mediumTicks ) const
- {
- double minStep = divideInterval( stepSize, maxMinSteps );
- if ( minStep == 0.0 )
- return;
- // # ticks per interval
- int numTicks = qCeil( qAbs( stepSize / minStep ) ) - 1;
- // Do the minor steps fit into the interval?
- if ( qwtFuzzyCompare( ( numTicks + 1 ) * qAbs( minStep ),
- qAbs( stepSize ), stepSize ) > 0 )
- {
- numTicks = 1;
- minStep = stepSize * 0.5;
- }
- int medIndex = -1;
- if ( numTicks % 2 )
- medIndex = numTicks / 2;
- // calculate minor ticks
- for ( int i = 0; i < ( int )majorTicks.count(); i++ )
- {
- double val = majorTicks[i];
- for ( int k = 0; k < numTicks; k++ )
- {
- val += minStep;
- double alignedValue = val;
- if ( qwtFuzzyCompare( val, 0.0, stepSize ) == 0 )
- alignedValue = 0.0;
- if ( k == medIndex )
- mediumTicks += alignedValue;
- else
- minorTicks += alignedValue;
- }
- }
- }
- /*!
- \brief Align an interval to a step size
- The limits of an interval are aligned that both are integer
- multiples of the step size.
- \param interval Interval
- \param stepSize Step size
- \return Aligned interval
- */
- QwtInterval QwtLinearScaleEngine::align(
- const QwtInterval &interval, double stepSize ) const
- {
- double x1 = QwtScaleArithmetic::floorEps( interval.minValue(), stepSize );
- if ( qwtFuzzyCompare( interval.minValue(), x1, stepSize ) == 0 )
- x1 = interval.minValue();
- double x2 = QwtScaleArithmetic::ceilEps( interval.maxValue(), stepSize );
- if ( qwtFuzzyCompare( interval.maxValue(), x2, stepSize ) == 0 )
- x2 = interval.maxValue();
- return QwtInterval( x1, x2 );
- }
- /*!
- Return a transformation, for logarithmic (base 10) scales
- */
- QwtScaleTransformation *QwtLog10ScaleEngine::transformation() const
- {
- return new QwtScaleTransformation( QwtScaleTransformation::Log10 );
- }
- /*!
- Align and divide an interval
- \param maxNumSteps Max. number of steps
- \param x1 First limit of the interval (In/Out)
- \param x2 Second limit of the interval (In/Out)
- \param stepSize Step size (Out)
- \sa QwtScaleEngine::setAttribute()
- */
- void QwtLog10ScaleEngine::autoScale( int maxNumSteps,
- double &x1, double &x2, double &stepSize ) const
- {
- if ( x1 > x2 )
- qSwap( x1, x2 );
- QwtInterval interval( x1 / qPow( 10.0, lowerMargin() ),
- x2 * qPow( 10.0, upperMargin() ) );
- if ( interval.maxValue() / interval.minValue() < 10.0 )
- {
- // scale width is less than one decade -> build linear scale
- QwtLinearScaleEngine linearScaler;
- linearScaler.setAttributes( attributes() );
- linearScaler.setReference( reference() );
- linearScaler.setMargins( lowerMargin(), upperMargin() );
- linearScaler.autoScale( maxNumSteps, x1, x2, stepSize );
- stepSize = ::log10( stepSize );
- return;
- }
- double logRef = 1.0;
- if ( reference() > LOG_MIN / 2 )
- logRef = qMin( reference(), LOG_MAX / 2 );
- if ( testAttribute( QwtScaleEngine::Symmetric ) )
- {
- const double delta = qMax( interval.maxValue() / logRef,
- logRef / interval.minValue() );
- interval.setInterval( logRef / delta, logRef * delta );
- }
- if ( testAttribute( QwtScaleEngine::IncludeReference ) )
- interval = interval.extend( logRef );
- interval = interval.limited( LOG_MIN, LOG_MAX );
- if ( interval.width() == 0.0 )
- interval = buildInterval( interval.minValue() );
- stepSize = divideInterval( log10( interval ).width(), qMax( maxNumSteps, 1 ) );
- if ( stepSize < 1.0 )
- stepSize = 1.0;
- if ( !testAttribute( QwtScaleEngine::Floating ) )
- interval = align( interval, stepSize );
- x1 = interval.minValue();
- x2 = interval.maxValue();
- if ( testAttribute( QwtScaleEngine::Inverted ) )
- {
- qSwap( x1, x2 );
- stepSize = -stepSize;
- }
- }
- /*!
- \brief Calculate a scale division
- \param x1 First interval limit
- \param x2 Second interval limit
- \param maxMajSteps Maximum for the number of major steps
- \param maxMinSteps Maximum number of minor steps
- \param stepSize Step size. If stepSize == 0, the scaleEngine
- calculates one.
- \sa QwtScaleEngine::stepSize(), QwtLog10ScaleEngine::subDivide()
- */
- QwtScaleDiv QwtLog10ScaleEngine::divideScale( double x1, double x2,
- int maxMajSteps, int maxMinSteps, double stepSize ) const
- {
- QwtInterval interval = QwtInterval( x1, x2 ).normalized();
- interval = interval.limited( LOG_MIN, LOG_MAX );
- if ( interval.width() <= 0 )
- return QwtScaleDiv();
- if ( interval.maxValue() / interval.minValue() < 10.0 )
- {
- // scale width is less than one decade -> build linear scale
- QwtLinearScaleEngine linearScaler;
- linearScaler.setAttributes( attributes() );
- linearScaler.setReference( reference() );
- linearScaler.setMargins( lowerMargin(), upperMargin() );
- if ( stepSize != 0.0 )
- stepSize = qPow( 10.0, stepSize );
- return linearScaler.divideScale( x1, x2,
- maxMajSteps, maxMinSteps, stepSize );
- }
- stepSize = qAbs( stepSize );
- if ( stepSize == 0.0 )
- {
- if ( maxMajSteps < 1 )
- maxMajSteps = 1;
- stepSize = divideInterval( log10( interval ).width(), maxMajSteps );
- if ( stepSize < 1.0 )
- stepSize = 1.0; // major step must be >= 1 decade
- }
- QwtScaleDiv scaleDiv;
- if ( stepSize != 0.0 )
- {
- QList<double> ticks[QwtScaleDiv::NTickTypes];
- buildTicks( interval, stepSize, maxMinSteps, ticks );
- scaleDiv = QwtScaleDiv( interval, ticks );
- }
- if ( x1 > x2 )
- scaleDiv.invert();
- return scaleDiv;
- }
- /*!
- \brief Calculate ticks for an interval
- \param interval Interval
- \param maxMinSteps Maximum number of minor steps
- \param stepSize Step size
- \param ticks Arrays to be filled with the calculated ticks
- \sa buildMajorTicks(), buildMinorTicks
- */
- void QwtLog10ScaleEngine::buildTicks(
- const QwtInterval& interval, double stepSize, int maxMinSteps,
- QList<double> ticks[QwtScaleDiv::NTickTypes] ) const
- {
- const QwtInterval boundingInterval = align( interval, stepSize );
- ticks[QwtScaleDiv::MajorTick] =
- buildMajorTicks( boundingInterval, stepSize );
- if ( maxMinSteps > 0 )
- {
- ticks[QwtScaleDiv::MinorTick] = buildMinorTicks(
- ticks[QwtScaleDiv::MajorTick], maxMinSteps, stepSize );
- }
- for ( int i = 0; i < QwtScaleDiv::NTickTypes; i++ )
- ticks[i] = strip( ticks[i], interval );
- }
- /*!
- \brief Calculate major ticks for an interval
- \param interval Interval
- \param stepSize Step size
- \return Calculated ticks
- */
- QList<double> QwtLog10ScaleEngine::buildMajorTicks(
- const QwtInterval &interval, double stepSize ) const
- {
- double width = log10( interval ).width();
- int numTicks = qRound( width / stepSize ) + 1;
- if ( numTicks > 10000 )
- numTicks = 10000;
- const double lxmin = ::log( interval.minValue() );
- const double lxmax = ::log( interval.maxValue() );
- const double lstep = ( lxmax - lxmin ) / double( numTicks - 1 );
- QList<double> ticks;
- ticks += interval.minValue();
- for ( int i = 1; i < numTicks; i++ )
- ticks += qExp( lxmin + double( i ) * lstep );
- ticks += interval.maxValue();
- return ticks;
- }
- /*!
- \brief Calculate minor/medium ticks for major ticks
- \param majorTicks Major ticks
- \param maxMinSteps Maximum number of minor steps
- \param stepSize Step size
- */
- QList<double> QwtLog10ScaleEngine::buildMinorTicks(
- const QList<double> &majorTicks,
- int maxMinSteps, double stepSize ) const
- {
- if ( stepSize < 1.1 ) // major step width is one decade
- {
- if ( maxMinSteps < 1 )
- return QList<double>();
- int k0, kstep, kmax;
- if ( maxMinSteps >= 8 )
- {
- k0 = 2;
- kmax = 9;
- kstep = 1;
- }
- else if ( maxMinSteps >= 4 )
- {
- k0 = 2;
- kmax = 8;
- kstep = 2;
- }
- else if ( maxMinSteps >= 2 )
- {
- k0 = 2;
- kmax = 5;
- kstep = 3;
- }
- else
- {
- k0 = 5;
- kmax = 5;
- kstep = 1;
- }
- QList<double> minorTicks;
- for ( int i = 0; i < ( int )majorTicks.count(); i++ )
- {
- const double v = majorTicks[i];
- for ( int k = k0; k <= kmax; k += kstep )
- minorTicks += v * double( k );
- }
- return minorTicks;
- }
- else // major step > one decade
- {
- double minStep = divideInterval( stepSize, maxMinSteps );
- if ( minStep == 0.0 )
- return QList<double>();
- if ( minStep < 1.0 )
- minStep = 1.0;
- // # subticks per interval
- int nMin = qRound( stepSize / minStep ) - 1;
- // Do the minor steps fit into the interval?
- if ( qwtFuzzyCompare( ( nMin + 1 ) * minStep,
- qAbs( stepSize ), stepSize ) > 0 )
- {
- nMin = 0;
- }
- if ( nMin < 1 )
- return QList<double>(); // no subticks
- // substep factor = 10^substeps
- const qreal minFactor = qMax( qPow( 10.0, minStep ), qreal( 10.0 ) );
- QList<double> minorTicks;
- for ( int i = 0; i < ( int )majorTicks.count(); i++ )
- {
- double val = majorTicks[i];
- for ( int k = 0; k < nMin; k++ )
- {
- val *= minFactor;
- minorTicks += val;
- }
- }
- return minorTicks;
- }
- }
- /*!
- \brief Align an interval to a step size
- The limits of an interval are aligned that both are integer
- multiples of the step size.
- \param interval Interval
- \param stepSize Step size
- \return Aligned interval
- */
- QwtInterval QwtLog10ScaleEngine::align(
- const QwtInterval &interval, double stepSize ) const
- {
- const QwtInterval intv = log10( interval );
- double x1 = QwtScaleArithmetic::floorEps( intv.minValue(), stepSize );
- if ( qwtFuzzyCompare( interval.minValue(), x1, stepSize ) == 0 )
- x1 = interval.minValue();
- double x2 = QwtScaleArithmetic::ceilEps( intv.maxValue(), stepSize );
- if ( qwtFuzzyCompare( interval.maxValue(), x2, stepSize ) == 0 )
- x2 = interval.maxValue();
- return pow10( QwtInterval( x1, x2 ) );
- }
- /*!
- Return the interval [log10(interval.minValue(), log10(interval.maxValue]
- */
- QwtInterval QwtLog10ScaleEngine::log10( const QwtInterval &interval ) const
- {
- return QwtInterval( ::log10( interval.minValue() ),
- ::log10( interval.maxValue() ) );
- }
- /*!
- Return the interval [pow10(interval.minValue(), pow10(interval.maxValue]
- */
- QwtInterval QwtLog10ScaleEngine::pow10( const QwtInterval &interval ) const
- {
- return QwtInterval( qPow( 10.0, interval.minValue() ),
- qPow( 10.0, interval.maxValue() ) );
- }
|