aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorFate Bussey <lafayette_bussey@brown.edu>2023-12-13 19:43:30 -0500
committerFate Bussey <lafayette_bussey@brown.edu>2023-12-13 19:43:30 -0500
commit6e53ef86100317b575658f95b9586ef0bc152a42 (patch)
tree8a5f3ad4ac7f67cb6a64269195187bbc65f1c512 /src/mainwindow.h
parent015884f1bfe701871b3227fc69598d5d83ab4f5b (diff)
new cyl
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);
+
};