Krita Source Code Documentation
Loading...
Searching...
No Matches
KisScatterOption.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2022 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6#ifndef KISSCATTEROPTION_H
7#define KISSCATTEROPTION_H
8
9#include <KisCurveOption.h>
10
12
13class PAINTOP_EXPORT KisScatterOption : public KisCurveOption
14{
15public:
17
18 QPointF apply(const KisPaintInformation& info, qreal width, qreal height) const;
19
20private:
22
23private:
24 bool m_axisX;
25 bool m_axisY;
26};
27
28#endif // KISSCATTEROPTION_H