qtgraphs_helper.h 516 B

12345678910111213141516171819
  1. // Copyright (C) 2023 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. #ifndef QTGRAPHS_HELPER_H
  4. #define QTGRAPHS_HELPER_H
  5. #include <sbkpython.h>
  6. #include <QtGraphs/qsurfacedataproxy.h>
  7. #include <QtCore/qlist.h>
  8. namespace QtGraphsHelper {
  9. QSurfaceDataArray surfaceDataFromNp(double x, double deltaX, double z, double deltaZ,
  10. PyObject *data);
  11. } // namespace QtGraphsHelper
  12. #endif // QTGRAPHS_HELPER_H