summaryrefslogtreecommitdiff
path: root/core/math/plane.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-06-13 11:58:24 +0200
committerGitHub <noreply@github.com>2021-06-13 11:58:24 +0200
commit600b4c9c7b11622e4eb5ed1e5fd70b3d3f66170e (patch)
tree1b246c4e0efba31a91fbfafa15380f99c45708f0 /core/math/plane.cpp
parentf4ab76444fc166c592b9b11cb9bd51f3b51a2e77 (diff)
parent554c776e08c9ee35fa9e2677e02f4005c11ddbc0 (diff)
Merge pull request #34668 from aaronfranke/to-string
[Core] Reformat structure string operators
Diffstat (limited to 'core/math/plane.cpp')
-rw-r--r--core/math/plane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/plane.cpp b/core/math/plane.cpp
index f1d3bbbd54..3c78b55b90 100644
--- a/core/math/plane.cpp
+++ b/core/math/plane.cpp
@@ -175,5 +175,5 @@ bool Plane::is_equal_approx(const Plane &p_plane) const {
}
Plane::operator String() const {
- return normal.operator String() + ", " + rtos(d);
+ return "[N: " + normal.operator String() + ", D: " + String::num_real(d, false) + "]";
}