diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2019-10-07 16:26:27 +0200 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2019-10-07 16:26:27 +0200 |
commit | 40197685bb0dbc76b7670fdd9fdddf07b44659ff (patch) | |
tree | 617d2cf83b171eb9d921f1408f91ee6d0351856e /core/math/basis.h | |
parent | 234289de2b10b76d368650a144a35c040a196ee0 (diff) | |
download | redot-engine-40197685bb0dbc76b7670fdd9fdddf07b44659ff.tar.gz |
Remove circular dependency between Vector3 and Basis.
Diffstat (limited to 'core/math/basis.h')
-rw-r--r-- | core/math/basis.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/math/basis.h b/core/math/basis.h index 053effda69..4be4ea4cd3 100644 --- a/core/math/basis.h +++ b/core/math/basis.h @@ -28,13 +28,11 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -// Circular dependency between Vector3 and Basis :/ -#include "core/math/vector3.h" - #ifndef BASIS_H #define BASIS_H #include "core/math/quat.h" +#include "core/math/vector3.h" class Basis { public: |