aboutsummaryrefslogtreecommitdiffstats
path: root/dev/a3-earthquake/quake_app.h
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2021-10-18 20:43:13 -0500
committerMatt Strapp <matt@mattstrapp.net>2021-10-18 20:43:13 -0500
commit9d5c7eaac6e14caa0c5640efbf973e603eee0cf8 (patch)
tree2326363e9690ca2facb7bed0c7c7c5c14f5a1d64 /dev/a3-earthquake/quake_app.h
parentDo w3 (diff)
downloadcsci4611-9d5c7eaac6e14caa0c5640efbf973e603eee0cf8.tar
csci4611-9d5c7eaac6e14caa0c5640efbf973e603eee0cf8.tar.gz
csci4611-9d5c7eaac6e14caa0c5640efbf973e603eee0cf8.tar.bz2
csci4611-9d5c7eaac6e14caa0c5640efbf973e603eee0cf8.tar.lz
csci4611-9d5c7eaac6e14caa0c5640efbf973e603eee0cf8.tar.xz
csci4611-9d5c7eaac6e14caa0c5640efbf973e603eee0cf8.tar.zst
csci4611-9d5c7eaac6e14caa0c5640efbf973e603eee0cf8.zip
Diffstat (limited to 'dev/a3-earthquake/quake_app.h')
-rw-r--r--dev/a3-earthquake/quake_app.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/dev/a3-earthquake/quake_app.h b/dev/a3-earthquake/quake_app.h
index 21d7a8d..bc8dcf9 100644
--- a/dev/a3-earthquake/quake_app.h
+++ b/dev/a3-earthquake/quake_app.h
@@ -54,13 +54,19 @@ private:
// true if drawing debugging info for the mesh
bool debug_mode_;
+
+ // true if the earth is in globe mode
+ bool globe_mode_;
// Database through which you can access the earthquakes
EarthquakeDatabase quake_db_;
// Object for rendering textured earth geometry
Earth earth_;
-
+
+ float rotation_angle_;
+ float old_rotation_angle_;
+
// Background image
Texture2D stars_tex_;