QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskGraduation.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_GRADUATION_H
7#define QSK_GRADUATION_H
8
9#include <QskGlobal.h>
10
11class QskTickmarks;
12
13namespace QskGraduation
14{
15 QSK_EXPORT QskTickmarks divideInterval( qreal x1, qreal x2,
16 int maxMajorSteps, int maxMinorSteps, qreal stepSize = 0.0 );
17
18 QSK_EXPORT qreal stepSize( double length, int numSteps );
19}
20
21#endif