1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #include "qquickdirection_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | /*! |
8 | \qmltype Direction |
9 | \instantiates QQuickDirection |
10 | \inqmlmodule QtQuick.Particles |
11 | \brief For specifying a vector space. |
12 | \ingroup qtquick-particles |
13 | |
14 | |
15 | */ |
16 | |
17 | |
18 | QQuickDirection::QQuickDirection(QObject *parent) : |
19 | QObject(parent) |
20 | { |
21 | } |
22 | |
23 | QPointF QQuickDirection::sample(const QPointF &from) |
24 | { |
25 | Q_UNUSED(from); |
26 | return QPointF(); |
27 | } |
28 | |
29 | QT_END_NAMESPACE |
30 | |
31 | #include "moc_qquickdirection_p.cpp" |
32 |