A computational geometry learning and experimentation tool.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import os
|
|
|
|
|
|
|
|
from PyQt5 import QtWidgets, uic
|
|
|
|
|
|
|
|
from clusterview_ui import Ui_MainWindow
|
|
|
|
|
|
|
|
class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
|
|
|
|
"""
|
|
|
|
A wrapper class for handling creating a window based
|
|
|
|
on the `clusterview_ui.py` code generated from
|
|
|
|
`clusterview.ui`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, parent=None):
|
|
|
|
super(MainWindow, self).__init__(parent)
|
|
|
|
self.setupUi(self)
|