2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2017-01-17 10:37:02 +00:00
|
|
|
|
|
|
|
#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();
|
|
|
|
}
|