Update bindings to use new Api extensions and rename Rect3->AABB

This commit is contained in:
BastiaanOlij
2017-11-23 22:50:05 +11:00
parent e72f4beec1
commit 0f773c2d72
16 changed files with 154 additions and 95 deletions

View File

@@ -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;