-
Notifications
You must be signed in to change notification settings - Fork 0
/
splines.pro
executable file
·51 lines (44 loc) · 1.15 KB
/
splines.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#-------------------------------------------------
#
# Project created by QtCreator 2011-09-26T22:45:42
#
#-------------------------------------------------
QT += core gui opengl
TARGET = splines
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
displaywidget.cpp \
basiswidget.cpp \
orderaction.cpp \
utils/glutils.cpp \
utils/pointutils.cpp \
commands/addpointcommand.cpp \
commands/deletepointcommand.cpp \
commands/clearcommand.cpp \
commands/movepointcommand.cpp \
commands/togglecommand.cpp \
bspline.cpp \
commands/moveknotcommand.cpp \
commands/setordercommand.cpp \
commands/resetknotscommand.cpp
HEADERS += mainwindow.h \
displaywidget.h \
basiswidget.h \
orderaction.h \
utils/matrix.h \
utils/vector.h \
utils/glutils.h \
utils/pointutils.h \
commands/addpointcommand.h \
commands/deletepointcommand.h \
commands/clearcommand.h \
commands/movepointcommand.h \
commands/togglecommand.h \
bspline.h \
commands/moveknotcommand.h \
commands/setordercommand.h \
commands/resetknotscommand.h
FORMS +=
OTHER_FILES += \
README