aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorDavid Doan <daviddoan@Davids-MacBook-Pro-193.local>2023-12-13 16:56:00 -0500
committerDavid Doan <daviddoan@Davids-MacBook-Pro-193.local>2023-12-13 16:56:00 -0500
commit484cc11540ea00555fdbf88a2101a3b7ac0613ec (patch)
treea5d25238fa3d66ce68f9145d6b47aadb4c1c31fb /src/mainwindow.h
parent69df3f54ac5186540bacd812b095385c732ca68b (diff)
new slider;
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index b608dd5..ff0d203 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -33,6 +33,7 @@ private:
void connectMaxTimeSlider();
void connectNegativeRotation();
void connectW();
+ void connectz();
RayTracer *rayTracer;
AspectRatioWidget *aspectRatioWidget;
@@ -57,6 +58,8 @@ private:
QSlider *wSlider;
QDoubleSpinBox *wBox;
QLabel *currTimeLabel;
+ QSlider *zSlider;
+ QDoubleSpinBox *zBox;
private slots:
@@ -89,4 +92,9 @@ private slots:
void onValChangeWBox(double newValue);
// void updateCameraPosition();
void updateTimeValue();
+
+ void onValChangezSlider(int newValue);
+ void onValChangezBox(double newValue);
+ void updateZSlider(double newValue);
+
};