diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-11-25 00:26:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-25 00:26:36 +0100 |
commit | ee4729cc07b904f92501d55d985ee2d325ba6e89 (patch) | |
tree | bd388b6570402fdde2732dd92217ee53981209cf /include/core/Transform.hpp | |
parent | e72f4beec1b091edf6f16a0fe27d5ed13ca450c2 (diff) | |
parent | d8faa4ec76bc73ca17b8e5dd72220d16996423c3 (diff) | |
download | redot-cpp-ee4729cc07b904f92501d55d985ee2d325ba6e89.tar.gz |
Merge pull request #52 from BastiaanOlij/change_to_new_extensions
Update bindings to use new Api extensions and rename Rect3->AABB
Diffstat (limited to 'include/core/Transform.hpp')
-rw-r--r-- | include/core/Transform.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/Transform.hpp b/include/core/Transform.hpp index c6b9b14..ebe83f7 100644 --- a/include/core/Transform.hpp +++ b/include/core/Transform.hpp @@ -4,7 +4,7 @@ #include "Basis.hpp" #include "Plane.hpp" -#include "Rect3.hpp" +#include "AABB.hpp" namespace godot { @@ -53,8 +53,8 @@ public: Plane xform(const Plane& p_plane) const; Plane xform_inv(const Plane& p_plane) const; - Rect3 xform(const Rect3& p_aabb) const; - Rect3 xform_inv(const Rect3& p_aabb) const; + AABB xform(const AABB& p_aabb) const; + AABB xform_inv(const AABB& p_aabb) const; void operator*=(const Transform& p_transform); Transform operator*(const Transform& p_transform) const; |