diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-21 21:28:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 21:28:55 +0200 |
| commit | bb2c0d3c3a410a7eff22fee286349eaa3a650778 (patch) | |
| tree | c8f088cdbe62af33628509e86e6109da5fdda8c9 /modules/gdnative/include | |
| parent | 60fab23262500789145b83738745fee9de58b7f0 (diff) | |
| parent | 83e324d670ca05993403c5d0ad7762aa096a7978 (diff) | |
Merge pull request #40501 from aaronfranke/core-docs-cs
Update core documentation to match recent C# changes
Diffstat (limited to 'modules/gdnative/include')
| -rw-r--r-- | modules/gdnative/include/gdnative/aabb.h | 2 | ||||
| -rw-r--r-- | modules/gdnative/include/gdnative/plane.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/include/gdnative/aabb.h b/modules/gdnative/include/gdnative/aabb.h index 9f41e9d4c6..c776297944 100644 --- a/modules/gdnative/include/gdnative/aabb.h +++ b/modules/gdnative/include/gdnative/aabb.h @@ -69,6 +69,8 @@ void GDAPI godot_aabb_set_size(const godot_aabb *p_self, const godot_vector3 *p_ godot_string GDAPI godot_aabb_as_string(const godot_aabb *p_self); +godot_aabb GDAPI godot_aabb_abs(const godot_aabb *p_self); + godot_real GDAPI godot_aabb_get_area(const godot_aabb *p_self); godot_bool GDAPI godot_aabb_has_no_area(const godot_aabb *p_self); diff --git a/modules/gdnative/include/gdnative/plane.h b/modules/gdnative/include/gdnative/plane.h index b759a8cc1a..9843056489 100644 --- a/modules/gdnative/include/gdnative/plane.h +++ b/modules/gdnative/include/gdnative/plane.h @@ -68,8 +68,6 @@ godot_plane GDAPI godot_plane_normalized(const godot_plane *p_self); godot_vector3 GDAPI godot_plane_center(const godot_plane *p_self); -godot_vector3 GDAPI godot_plane_get_any_point(const godot_plane *p_self); - godot_bool GDAPI godot_plane_is_point_over(const godot_plane *p_self, const godot_vector3 *p_point); godot_real GDAPI godot_plane_distance_to(const godot_plane *p_self, const godot_vector3 *p_point); |