From 4079e69fe4107d2a50b122dbd58710bbeb10ace2 Mon Sep 17 00:00:00 2001 From: Matthew Kosarek Date: Thu, 17 Jun 2021 20:02:20 -0400 Subject: (WIP) Getting started in 3d land --- shared_cpp/Camera3d.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shared_cpp/Camera3d.h (limited to 'shared_cpp/Camera3d.h') 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; +}; -- cgit v1.2.1