summaryrefslogtreecommitdiffstats
path: root/tests/manual/triangulator/main.cpp
blob: 9e6de3666ecae16b025410167a7a62a1c5e0b000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QApplication>
#include <QMainWindow>
#include "triviswidget.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QMainWindow wnd;
    wnd.resize(1280, 800);
    wnd.setCentralWidget(new TriangulationVisualizer);
    wnd.show();

    return app.exec();
}