diff options
author | Fate Bussey <lafayette_bussey@brown.edu> | 2023-12-13 19:43:30 -0500 |
---|---|---|
committer | Fate Bussey <lafayette_bussey@brown.edu> | 2023-12-13 19:43:30 -0500 |
commit | 6e53ef86100317b575658f95b9586ef0bc152a42 (patch) | |
tree | 8a5f3ad4ac7f67cb6a64269195187bbc65f1c512 /src/mainwindow.h | |
parent | 015884f1bfe701871b3227fc69598d5d83ab4f5b (diff) |
new cyl
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 8 |
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); + }; |