diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-04 16:05:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 16:05:30 +0100 |
commit | 8495be9cece924b22a8148ce335d04836027bc40 (patch) | |
tree | 7808ce5fd0594fe76526a9192b497c418c36ce63 /core/math/camera_matrix.h | |
parent | 721c32ee2bb15ca16692dee848fc3190ed0b6a49 (diff) | |
parent | 5f56d385b04f4054ec86605fcda56ffeed4ca5f4 (diff) | |
download | redot-engine-8495be9cece924b22a8148ce335d04836027bc40.tar.gz |
Merge pull request #57621 from akien-mga/core-split-rect2i-own-header
Diffstat (limited to 'core/math/camera_matrix.h')
-rw-r--r-- | core/math/camera_matrix.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/core/math/camera_matrix.h b/core/math/camera_matrix.h index da1aba7562..4b7a4c9346 100644 --- a/core/math/camera_matrix.h +++ b/core/math/camera_matrix.h @@ -31,8 +31,14 @@ #ifndef CAMERA_MATRIX_H #define CAMERA_MATRIX_H -#include "core/math/rect2.h" -#include "core/math/transform_3d.h" +#include "core/math/math_defs.h" +#include "core/math/vector3.h" + +class AABB; +class Plane; +class Transform3D; +struct Rect2; +struct Vector2; struct CameraMatrix { enum Planes { |