aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/curveeditor/detail/axis.h
blob: 9c11542a29b80ac1d9fe9a8a18ec02c8986a5506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QToolBar>
#include <QWidget>

namespace QmlDesigner {

struct Axis
{
    static Axis compute(double dmin, double dmax, double height, double pt);

    double lmin;
    double lmax;
    double lstep;
};

} // End namespace QmlDesigner.