summaryrefslogtreecommitdiff
path: root/shared_cpp/Camera3d.h
diff options
context:
space:
mode:
authorMatthew Kosarek <mattkae@protonmail.com>2021-06-17 20:02:20 -0400
committerMatthew Kosarek <mattkae@protonmail.com>2021-06-17 20:02:20 -0400
commit4079e69fe4107d2a50b122dbd58710bbeb10ace2 (patch)
tree2ea0bb6857ad913e54974eb380b3612709559615 /shared_cpp/Camera3d.h
parent19b0a3cafe144e8e77974bb0c9c63141a812e30d (diff)
(WIP) Getting started in 3d land
Diffstat (limited to 'shared_cpp/Camera3d.h')
-rw-r--r--shared_cpp/Camera3d.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/shared_cpp/Camera3d.h b/shared_cpp/Camera3d.h
new file mode 100644
index 0000000..7186975
--- /dev/null
+++ b/shared_cpp/Camera3d.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include "mathlib.h"
+
+struct Camera3d {
+ Mat4x4 projection;
+ Mat4x4 view;
+};