Mostly complete from the Python original
This commit is contained in:
commit
97cf902b87
18 changed files with 527 additions and 0 deletions
16
src/main.cpp
Normal file
16
src/main.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#include <QApplication>
|
||||
|
||||
#include "window.h"
|
||||
#include "mesh.h"
|
||||
#include "glmesh.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
|
||||
Window window;
|
||||
window.show();
|
||||
|
||||
window.load_stl("../../splitter/cayman.stl");
|
||||
return a.exec();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue