diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-12-13 16:10:56 -0500 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-12-13 16:10:56 -0500 |
commit | 4c2e415118a451c8cf6f46d296e16a2711169ead (patch) | |
tree | de989e6cc2ea6c7450080f14b9c59e4c4885cf4f /src/mainwindow.cpp | |
parent | 23d8f83bfcfdb48ed18bf01204d262322c4e41e4 (diff) |
fix merge
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 4eda325..ed5b32e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -26,25 +26,25 @@ void MainWindow::initialize() { font.setPointSize(12); font.setBold(true); QLabel *xy_label = new QLabel(); // XY label - xy_label->setText("Camera XY:"); + xy_label->setText("Rotation XY angle (J,L)"); xy_label->setFont(font); QLabel *xz_label = new QLabel(); // XZ label - xz_label->setText("Camera XZ:"); + xz_label->setText("Rotation XZ angle (I, M)"); xz_label->setFont(font); QLabel *xw_label = new QLabel(); // XW label - xw_label->setText("Camera XW:"); + xw_label->setText("Translate X (W,D)"); xw_label->setFont(font); QLabel *yz_label = new QLabel(); // YZ label - yz_label->setText("Camera YZ:"); + yz_label->setText("Rotation YZ angle (O, N):"); yz_label->setFont(font); QLabel *yw_label = new QLabel(); // YW label - yw_label->setText("Camera YW:"); + yw_label->setText("Translate Y (A, D)"); yw_label->setFont(font); QLabel *zw_label = new QLabel(); // ZW label - zw_label->setText("Camera ZW:"); + zw_label->setText("Translate W (R, F):"); zw_label->setFont(font); QLabel *w_label = new QLabel(); // W label - w_label->setText("W value:"); + w_label->setText("Vorex Depth:"); w_label->setFont(font); currTimeLabel = new QLabel(); // Current Time label |