2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2024-02-02 13:36:10 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
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();
|
|
|
|
}
|