summaryrefslogtreecommitdiff
path: root/core/math/plane.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-07-21 21:28:55 +0200
committerGitHub <noreply@github.com>2020-07-21 21:28:55 +0200
commitbb2c0d3c3a410a7eff22fee286349eaa3a650778 (patch)
treec8f088cdbe62af33628509e86e6109da5fdda8c9 /core/math/plane.cpp
parent60fab23262500789145b83738745fee9de58b7f0 (diff)
parent83e324d670ca05993403c5d0ad7762aa096a7978 (diff)
Merge pull request #40501 from aaronfranke/core-docs-cs
Update core documentation to match recent C# changes
Diffstat (limited to 'core/math/plane.cpp')
-rw-r--r--core/math/plane.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/math/plane.cpp b/core/math/plane.cpp
index df37ceb0e5..4200484c59 100644
--- a/core/math/plane.cpp
+++ b/core/math/plane.cpp
@@ -52,10 +52,6 @@ Plane Plane::normalized() const {
return p;
}
-Vector3 Plane::get_any_point() const {
- return get_normal() * d;
-}
-
Vector3 Plane::get_any_perpendicular_normal() const {
static const Vector3 p1 = Vector3(1, 0, 0);
static const Vector3 p2 = Vector3(0, 1, 0);